@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Rowdies:wght@300;400;700&display=swap");
:root {
  --primary: #f8d102;
  --secondary: #0a1430;
  --dark: #0a1a2f;
  --light: #e6e6e6;
  --color-bg: #0a1a2f;
  --color-bg-dark: #0a1430;
  --color-bg-light: #fff;
  --color-bg-darker: #0d1b4d;
  --color-text: #fff;
  --color-text-light: #e6e6e6;
  --color-text-lighter: #dcdcdc;
  --color-text-dark: #161D40;  
  --color-text-muted: #888;
  --color-accent: #1e90ff;
  --color-accent-hover: #0d6efd;
  --color-strong: #f8d102;
    --color-strong-dark: #0a1430;
  --color-list: #d9d9d9;
  --color-paragraph: #e0e0e0;
  --color-calendly: #d1d9e6;
  --color-countdown-bg: rgba(255, 255, 255, 0.1);
}

body {
  margin-top: 10px;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--color-bg) !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-box {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
text-align: center;
}

.thank-box h1 {
color: #4F46E5;
margin-bottom: 1rem;
}

.thank-box p {
font-size: 1.1rem;
}

.strike-through {
text-decoration: line-through;}

.white-bg{
  margin-top: 10px;
  padding: 0;
  width: 100%;
  background: var(--color-bg-light) !important;
  color: var(--color-text-dark) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.border-bg-dark{
  border: var(--color-bg-dark) 2px solid !important;
  border-radius: 5px;
}

.border-bg-gold{
  border: var(--color-strong) 2px solid !important;
  border-radius: 5px;
}

.border-bg-light{
  border: var(--color-bg-light) 2px solid !important;
  border-radius: 5px;
}

.white-bg .p{
  color: var(--color-text-dark) !important;
}
.dark-bg{
  margin-top: 10px;
  padding: 0;
  width: 100%;
  background: var(--color-bg-dark) !important;
  color: var(--color-text-light) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.color-text-dark{
  color: var(--color-text-dark) !important;
}

.color-text-gold{
  color: var(--color-strong) !important;
}

.color-text-light{
  color: var(--color-text-light) !important;
}

.shake {
  animation: shake 0.6s ease-in-out infinite;
}
.cta-button-gold:hover {
  animation: shake 0.6s ease-in-out;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.row-flex{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; 
}

.column-flex{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.center-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-button-gold {
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    background: var(--color-strong) !important;
    color: var(--color-bg-dark) !important;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    /* scales with screen */
    animation: fadeInUp 2s ease forwards;
    animation-delay: 0.7s;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-dark {
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    background: var(--color-bg-dark) !important;
    color: var(--color-text-light) !important;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    /* scales with screen */
    animation: fadeInUp 2s ease forwards;
    animation-delay: 0.7s;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-gold:hover {
    background: var(--color-strong) !important;
    animation: fadeInUp 2s ease forwards;
}

.font-heading {
  font-family: "Oswald", sans-serif;
}

.fontweight-400 {
  font-weight: 400;
}

.font-body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.font-cta {
  font-family: "Rowdies", sans-serif;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

a:-webkit-any-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.device-center {
  display: flex;          
  align-items: center;    
  justify-content: center;
  text-align: center;
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.width-900{
    width: 900px;
}

/* Headings */
h1 {
  font-size: 3rem !important;
  margin: 0 0 1rem 0 !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  animation: slideDown 1.5s ease forwards !important;
}

h2 {
  font-size: 2.25rem !important;
  margin: 1.5rem 0 1rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

h3 {
  font-size: 1.75rem !important;
  margin: 1.25rem 0 0.75rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

h4 {
  font-size: 1.5rem !important;
  margin: 1rem 0 0.5rem !important;
  font-weight: 500 !important;
}

h5 {
  font-size: 1.25rem !important;
  margin: 0.75rem 0 0.5rem !important;
  font-weight: 500 !important;
}

h6 {
  font-size: 1rem !important;
  margin: 0.5rem 0 !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

/* Paragraphs */
p {
  font-size: 1rem !important;
  color: #e0e0e0 !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem 0 !important;
}

/* Lists */
ul,li {
  animation: fadeInUp 2s ease forwards;
    animation-delay: 0.5s;
}

/* Inline elements */
span {
  color: #ffffff;
  font-size: 1rem;
}

strong {
  color: var(--color-strong) !important;
  font-weight: 700;
}

.strong-dark {
  color: var(--color-strong-dark) !important;
  font-weight: 700;
}

/* internal links color */
a.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  background: #0b76ef;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
a[href^="#"] {
  color: #f8d102;
}
/* Optional: animations for headings */
@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 0.95rem;
  }
  p,
  li,
  span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.9rem;
  }
  p,
  li,
  span {
    font-size: 0.9rem;
    animation: fadeInUp 2s ease forwards;
  }
}

p {
  margin: 15px 0 25px;
  font-size: 1.2rem;
  opacity: 0;
  color: #fff;
  animation: fadeInUp 2s ease forwards;
  animation-delay: 0.7s;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: #fff;
  margin-top: 20px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  min-width: 70px;
  animation: scaleUp 0.5s ease forwards;
}

.span {
  color: #fff;
}

.calendly-section {
  margin-top: 35px;
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
  animation-delay: 1.5s;
}

.calendly-section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #d1d9e6;
}

.calendly-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #1e90ff;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.calendly-btn:hover {
  background: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.5);
}

@media (max-width: 768px) {
  .calendly-section p {
    font-size: 0.9rem;
  }
  .calendly-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  p {
    font-size: 1rem;
  }
  .countdown div {
    font-size: 1rem;
    padding: 10px 12px;
    min-width: 55px;
  }
}

@media (max-width: 768px) {
  .container-dark {
    /* padding: 15px; */
    border-radius: 8px;
  }
  .container-nopadding {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container-dark {
    /* padding: 10px; */
    border-radius: 6px;
  }

  .row-flex{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.column-flex{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}
}
footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
}