:root {
  --primary-color: #ffd08d;
  --color-secondary: #FFE9BC;
  --background-color: radial-gradient(ellipse at center, #1b1814 0%, #14110e 50%, #0f0d0a 100%);
  --font-family: 'Nunito Sans', sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at center, #1b1814, #14110e, #0f0d0a);
  background-size: 200% 200%;
  animation: animatedGradient 30s ease infinite;
  color: #FFFFFF;
  font-family: 'Nunito Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

nav {
    background: rgba(50, 50, 50, 0.25); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 1rem; 
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 95%;
    max-width: 1400px;
    margin: 2rem auto -1rem auto;
    box-sizing: border-box;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.nav-left {
    flex: 0 0 auto;
}

.nav-logo {
    height: 50px;
    width: auto;
    margin-right: 1rem;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-center a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap; 
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-center a:hover {
    color: #ffd08d;
    opacity: 0.9;
}

.nav-right {
    flex: 0 0 auto;
    margin-left: auto;
}

.auth-section {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.login-button {
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
}

.login-button:hover {
    opacity: 0.9;
}

.username-button {
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
}

.username-button:hover {
    opacity: 0.9;
}

.logout-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #1a1a1a;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    z-index: 1000;
    min-width: 120px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logout-dropdown.show {
    display: block;
}

.logout-button {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.95rem;
    text-align: center;
}

.mobile-buttons {
    display: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1001; 
    position: relative;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color); 
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 768px) { 
    nav {
        padding: 0.75rem;
    }

    .nav-logo {
        height: 50px; 
        margin-right: 0.5rem;
    }

    /* Hide the nav-menu by default on mobile */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 1rem;
        z-index: 999;
        border-bottom: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-center {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
    }

    .nav-right {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mobile-buttons .auth-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-buttons .auth-section .login-button {
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: center;
        padding: 0.5rem;
    }

    .mobile-buttons .auth-section .username-button {
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: center;
        padding: 0.5rem;
    }

    .mobile-buttons .logout-dropdown {
        position: static;
        width: 100%;
        margin: 0.5rem 0 0;
        text-align: center;
    }

    .nav-menu .nav-center a,
    .mobile-buttons .auth-section .login-button,
    .mobile-buttons .auth-section .username-button {
        display: block;
        width: 100%;
        padding: 0.75rem;
        text-align: center;
        font-size: 1rem;
    }

    
    .nav-menu .cta-button {
        width: calc(100% - 3rem); 
        margin: 0.5rem auto; 
        padding: 0.8rem 1.2rem;
    }

    /* Make sure hamburger is visible on mobile */
    .hamburger-menu {
        display: flex !important;
        margin-left: auto;
    }

   
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .payment-status-card {
        padding: 1.5rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #FFD08D;
  margin-bottom: 1rem;
}

.stax-glow {
  color: var(--primary-color); 
  animation: breathe-glow 2.5s infinite alternate ease-in-out; 
}

@keyframes breathe-glow {
  from {
    text-shadow:
      0 0 5px var(--color-secondary),  
      0 0 10px var(--color-secondary);
  }
  to {
    text-shadow:
      0 0 8px var(--color-secondary),   
      0 0 16px var(--color-secondary),
  }
}


h2 {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}


.aspect-w-16.aspect-h-9 {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
}

.aspect-w-16.aspect-h-9 iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(50, 50, 50, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  outline: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(255, 208, 141, 0.2);
}

.feature-card:focus {
  outline: none;
  box-shadow: 0 0 0 2px transparent;
}

.feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #ffd08d 30%, #fcb44d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 10px rgba(255, 208, 141, 0.9),
    0 0 30px rgba(255, 208, 141, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

.feature-icon:hover {
  box-shadow:
    0 0 15px rgba(255, 208, 141, 1),
    0 0 40px rgba(255, 208, 141, 0.4),
    inset 0 0 12px rgba(255, 255, 255, 0.15);
}

.feature-icon img {
  width: 45px;
  height: 45px;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-card:nth-child(even) {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }
}

.how-it-works-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}


.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem 1.5rem 5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.6s ease;
}

/* Trigger glare on hover */
.step-card:hover::after {
  left: 125%;
}


.step-card:last-child {
  margin-bottom: 0;
}

/* Connecting vertical line */
.step-card:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 50px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  opacity: 0.3;
}


.step-number {
  position: absolute;
  top: 1.5rem;
  left: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 1;
  box-shadow: 0 0 8px var(--primary-color), 0 0 16px var(--primary-color);
  transition: transform 0.3s ease;
}


.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.step-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-card.in-view {
  animation: fadeInUp 0.6s ease forwards;
}

.step-card.in-view:nth-child(1) { animation-delay: 0.2s; }
.step-card.in-view:nth-child(2) { animation-delay: 0.4s; }
.step-card.in-view:nth-child(3) { animation-delay: 0.6s; }

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

.footer {
  background-color: var(--background-color);
  color: #b0b0b0;
  padding: 3rem 2rem;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto; 
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 3rem;
  margin-bottom: 2rem;
  padding-left: 6rem; 
 
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 180px;
  padding: 0 1rem;
  text-align: left; 
}

.footer-logo {
  height: 250px;
  width: auto;
  margin-bottom: -50px;
  margin-left: -100px; 
  margin-right: auto; 
  display: block; 
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 250px;
  margin-left: -70px; 
  margin-right: auto;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start; 
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: translateY(-3px);
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  padding-top: 1.5rem;
  border-top: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding-left: 0; 
  }
  .footer-brand,
  .footer-links,
  .footer-social {
    min-width: unset;
    padding: 0;
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
}


button {
  position: relative;
  padding: 12px 35px;
  background: var(--primary-color);
  font-size: 18px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  color: #181818;
  border: 3px solid #FFD08D;
  border-radius: 8px;
  box-shadow: 0 0 0 #fec1958c;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  
  animation: continuous-glow 2.5s infinite; 
}

@keyframes continuous-glow {
  0% {
    box-shadow: 0 0 5px #fec1958c, 0 0 5px #fec1958c inset;
  }
  50% {
    box-shadow: 0 0 15px #fec1958c, 0 0 15px #fec1958c inset;
  }
  100% {
    box-shadow: 0 0 5px #fec1958c, 0 0 5px #fec1958c inset;
  }
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

button:hover {
  background: transparent;
  color: #fec195;
  box-shadow: 0 0 30px #fec195;
  animation: none; 
}

button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

.why-stax-section {
    background-color: var(--background-color); 
    padding-bottom: 1rem;
}

.why-stax-section {
    padding: 6rem 2rem; 
    max-width: 1200px; 
    margin: auto;
}

.feature-detail-block {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    gap: 4rem; 
    margin-bottom: 8rem; 
    padding: 3rem 0; 
}

.feature-detail-block:last-of-type {
    margin-bottom: 0; 
}

.feature-detail-block.reverse-layout {
    flex-direction: row-reverse; 
}

.feature-text {
    flex: 1; 
    min-width: 300px; 
    max-width: 500px; 
    text-align: left; 
}

.feature-detail-title {
    font-size: 2.5rem; 
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-detail-description {
    font-size: 1.1rem;
    color: #b0b0b0; 
    line-height: 1.6;
}

.feature-image {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    min-width: 300px; 
    max-width: 500px; 
}

.feature-image img {
    max-width: 100%; 
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); 
}

@media (max-width: 900px) {
    .feature-detail-block {
        flex-direction: column; 
        text-align: center;
        gap: 2rem; 
        margin-bottom: 6rem;
    }
    .feature-detail-block.reverse-layout {
        flex-direction: column; 
    }
    .feature-text {
        text-align: center; 
        min-width: unset; 
        max-width: 100%;
    }
    .feature-image {
        min-width: unset; 
        max-width: 80%; 
    }
    .feature-detail-title {
        font-size: 2rem; 
    }
}

@media (max-width: 600px) {
    .feature-detail-block {
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    .feature-detail-title {
        font-size: 1.8rem;
    }
    .feature-detail-description {
        font-size: 1rem;
    }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.reveal-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-left.animate,
.fade-right.animate {
  transform: translateX(0);
}

/* Education Modules Section */

.education-hero {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.education-hero.reveal-on-load {
  opacity: 1;
  transform: translateY(0);
}

.education-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.education-section.reveal-on-load {
  opacity: 1;
  transform: translateY(0);
}

.education-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.education-module {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 8px;
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    padding: 2rem;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); 
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
}


.education-module.locked {
    opacity: 0.6; 
    cursor: not-allowed; 
    pointer-events: none; 
}


.education-module.locked:hover {
    transform: none; 
    box-shadow: none; 
}

.module-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.education-module-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.education-module-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.education-module .module-cta {
    background-color: var(--primary-color);
    color: black;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center; 
    justify-content: center; 
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.education-module .module-cta.locked { 
    background-color: #3a3a3a; 
    color: #999; 
    cursor: not-allowed;
    pointer-events: none; 
}


.education-module .module-cta.locked:hover {
    background-color: #3a3a3a; 
    color: #999; 
}


.education-module .module-cta svg {
    width: 1.5rem; 
    height: 1.5rem;
    vertical-align: middle; 
}

/* About Page */

.about-section h1 {
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 3rem; 
    line-height: 1.2; 
    color: #FFFFFF; 
}


@media (min-width: 768px) {
    .about-section h1 {
        font-size: 3rem; 
    }
}

.about-section h1 span {
    color: var(--primary-color); 
}


.statement-block {
    background: rgba(50, 50, 50, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    color: #fff;
    transition: box-shadow 0.3s ease;
}

.statement-block:hover {
    text-shadow: 0 0 8px var(--primary-color);
}

.about-subheading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-paragraph {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-competencies-section {
    margin-bottom: 4rem;
}

.values-competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-competency-item {
    padding: 2rem;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-competency-item:hover {
    transform: translateY(-6px);
    background: rgba(50, 50, 50, 0.5);
    border-color: var(--primary-color);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.item-description {
    font-size: 1rem;
    color: #c2c2c2;
    line-height: 1.6;
}


/* Responsive adjustments for About Us page */
@media (max-width: 768px) {
    .statement-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .about-subheading {
        font-size: 1.75rem;
    }
    .about-paragraph {
        font-size: 1rem;
    }
    .values-competencies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .values-competencies-section {
        margin-bottom: 3rem;
    }
    .item-title {
        font-size: 1.15rem;
    }
    .item-description {
        font-size: 0.9rem;
    }
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .glass {
  position: relative;
  width: 180px;
  height: 200px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
}

.container:hover .glass {
  transform: rotate(0deg);
  margin: 0 10px;
}

.container .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.container .glass img {
  font-size: 2.5em;
  fill: #fff;
}

.glass-icon {
  width: 1em; 
  height: auto; 
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass.reveal {
  transform: rotate(calc(var(--r) * 1deg)) translateY(40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.glass.reveal.visible {
  transform: rotate(0deg) translateY(0);
  opacity: 1;
}

/* Competitions Page Styles */
.competitions-section {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
}

.free-tier-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.free-tier-display,
.tier-details-display {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 208, 141, 0.12);
    padding: 3rem;
    color: #f3f3f3;
    min-height: 350px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, border 0.3s ease;
}

.free-tier-display .details-title {
    color: var(--color-secondary);
}


.free-tier-display .tick-icon {
    color: var(--color-secondary);
}

.tier-selection-area {
    margin-bottom: 4rem;
}

.tier-selectors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-selector {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #d0d0d0;
}

.tier-selector:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 208, 141, 0.25);
}

.tier-selector.active {
    background: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
    box-shadow: 0 0 18px var(--primary-color), 0 0 36px rgba(255, 208, 141, 0.4);
    transform: translateY(-5px);
}

.tier-selector.active .tier-name {
    color: black;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

/* Tier Details Display Area (Dynamic Content) */
.tier-details-display {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 208, 141, 0.4);
    color: #f3f3f3;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 350px;
}

.details-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    gap: 2rem;
}

.details-left-panel {
    flex: 1;
    min-width: 280px;
    text-align: left; 
    padding-right: 1rem;
 
}

.details-right-panel {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.details-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0rem; 
    line-height: 1.2;
    
}

.details-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-left: 0.75rem; 
}

.details-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2rem;
}

.tier-details-display .tier-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-top: 0; 
}

.tier-details-display .tier-features-list li {
    font-size: 1.1rem;
    color: #f3f3f3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.tier-details-display .tick-icon {
    color: var(--primary-color);
    width: 1.5rem;
    height: 1.5rem;
}

.checkout-button {
    background-color: var(--primary-color);
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.checkout-button:hover {
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .tier-details-display {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .details-content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }

  .details-left-panel,
  .details-right-panel {
    padding: 0;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
  }

  .details-title {
    font-size: 1.8rem;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    width: 100%;
  }

  .tier-header-top-right {
    flex-direction: column;
    align-items: center;
  }

  .details-title,
  .details-price {
    text-align: center;
    display: block;
  }

  .details-description {
    max-width: 90ch;
    padding: 0;
    margin: 1rem auto;
    font-size: 1rem;
    line-height: 1.5;
  }

  .tier-details-display .tier-features-list {
    padding-left: 0;
    list-style: none;
  }

  .tier-details-display .tier-features-list li {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
  }

  .tier-selector {
    min-width: unset;
    max-width: 100%;
    padding: 1rem 1.5rem;
  }

  .tier-selectors {
    flex-direction: column;
    gap: 1rem;
  }

  .free-tier-display {
    padding: 1.5rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

.main-page-title {
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
    color: #FFFFFF; 
}

/* Adjust title size for larger screens */
@media (min-width: 768px) {
    .main-page-title {
        font-size: 3rem; 
    }
}

/* Ensure the span inside this new title class gets its specific color */
.main-page-title span {
    color: var(--primary-color); 
}

.page-intro-description {
    font-size: 1.1rem; 
    color: #f3f3f3; 
    line-height: 1.6;
    text-align: center;
    max-width: 800px; 
    margin: 0 auto 3rem auto; 
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #000000;
  border-radius: 10px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  font-family: 'Nunito Sans', sans-serif;
  border: 2px solid var(--primary-color);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.modal-form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
  flex-direction: column;
}

.cta-button {
  display: inline-block; 
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: #000000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}

.hidden {
  display: none;
}

.crypto-button {
  background-color: #2d2d2d !important;
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: -8px;
  right: -25px;
  background: var(--primary-color);
  color: black;
  font-size: 0.6rem;
  padding: 2px 20px;
  transform: rotate(45deg);
  font-weight: bold;
}

.modal-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.crypto-button:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Payment Cancel Page Styles */
.payment-status-container {
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.payment-status-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 208, 141, 0.2);
    margin: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-center {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-right {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 1rem;
    }

    .mobile-buttons .auth-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-buttons .username-button {
        width: 200px;
    }

    .mobile-buttons .logout-dropdown {
        position: static;
        width: 200px;
        margin: 0.5rem auto 0;
    }

    .hamburger-menu {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        z-index: 1001;
    }

    .hamburger-menu .bar {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .payment-status-card {
        padding: 2rem;
        margin: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

   .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        position: relative;
        background: #1a1a1a;
        padding: 2rem;
        width: 90%;
        max-width: 500px;
        border-radius: 16px;
        border: 2px solid var(--primary-color);
        margin: 1rem;
    }

    .modal h2 {
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #fff;
    }

    .form-group input {
        width: 100%;
        padding: 0.75rem;
        border-radius: 8px;
        border: 1px solid #333;
        background: #2d2d2d;
        color: #fff;
    }

    .button-group {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cancel-button {
        padding: 0.75rem 1.5rem;
        background: transparent;
        border: 1px solid #ff4444;
        color: #ff4444;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 200px;
    }

    .cancel-button:hover {
        background: #ff4444;
        color: #fff;
    }

    .payment-button {
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .payment-button.crypto {
        position: relative;
        background: #2d2d2d;
        border: 1px solid #666;
        color: #666;
    }

    .coming-soon {
        position: absolute;
        top: -10px;
        right: -10px;
        background: #ff4444;
        color: #fff;
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
    }

    #stripe-button {
        background: var(--primary-color);
        border: none;
        color: #000;
    }

    #stripe-button:hover {
        opacity: 0.9;
    }

    .form-group input[readonly] {
        background: #2d2d2d;
        color: #888;
        cursor: not-allowed;
    }

    @media (max-width: 768px) {
        .modal-content {
            padding: 1.5rem;
            margin: 1rem;
            width: calc(100% - 2rem);
        }

        .button-group {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .cancel-button,
        .payment-button {
            width: 100%;
            max-width: none;
        }
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .auth-section {
        display: inline-flex;
        align-items: center;
        margin-right: 0.75rem;
    }

    .login-button {
        background: var(--primary-color);
        color: #000;
        padding: 0.5rem 1.25rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        font-size: 0.95rem;
        text-decoration: none;
    }

    .login-button:hover {
        opacity: 0.9;
    }

    .username-button {
        background: var(--primary-color);
        color: #000;
        padding: 0.5rem 1.25rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        border: none;
        font-size: 0.95rem;
        position: relative;
    }

    .username-button:hover {
        opacity: 0.9;
    }

    .cta-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
    }

    .logout-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #1a1a1a;
        border: 1px solid var(--primary-color);
        border-radius: 8px;
        margin-top: 0.5rem;
        z-index: 1000;
    }

    .logout-dropdown.show {
        display: block;
    }

    .logout-button {
        width: 100%;
        padding: 0.5rem 1.25rem;
        background: transparent;
        border: none;
        color: #ff4444;
        cursor: pointer;
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .logout-button:hover {
        background: #ff4444;
        color: #fff;
    }

    .mobile-buttons {
        display: none;
    }

    @media (max-width: 768px) {
        .nav-right {
            display: none;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            padding: 1rem;
            gap: 1rem;
        }

        .nav-menu.active a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            text-align: center;
        }

        .nav-menu.active a:hover {
            color: var(--primary-color);
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 1rem;
            align-items: center;
        }

        .mobile-buttons .auth-section {
            margin-right: 0;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .mobile-buttons .login-button,
        .mobile-buttons .username-button {
            background: var(--primary-color);
            color: #000;
            width: 200px;
            text-align: center;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-size: 0.95rem;
        }

        .mobile-buttons .login-button:hover,
        .mobile-buttons .username-button:hover {
            opacity: 0.9;
        }
    }

/* --- Auth Forms (Login/Signup) --- */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
}
.auth-card {
    background: rgba(40, 36, 36, 0.95);
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.auth-card h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 800;
}
.auth-card input {
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: #44413e;
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.auth-card input::placeholder {
    color: #b0a99f;
}
.main-btn {
    width: 100%;
    padding: 14px 0;
    margin: 18px 0 10px 0;
    background: #ffd18c;
    color: #222;
    border: none;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.main-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.main-btn:hover:not(:disabled) {
    background: #ffbe5c;
}
.divider {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #44413e;
    line-height: 0.1em;
    margin: 20px 0 20px;
    color: #b0a99f;
}
.divider span {
    background: rgba(40, 36, 36, 0.95);
    padding: 0 10px;
}
.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #44413e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.google-btn:hover {
    background: #5a5754;
}
.google-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.switch-text {
    color: #b0a99f;
    margin-top: 10px;
    font-size: 1rem;
}
.switch-text a {
    color: #ffd18c;
    text-decoration: none;
    font-weight: 500;
}
.switch-text a:hover {
    text-decoration: underline;
}
.error-message {
    color: #ff4444;
    margin-bottom: 1rem;
    text-align: center;
    min-height: 24px;
}

/* Remove glow from auth and nav/logout buttons */
.main-btn, .google-btn, .login-button, .username-button, .logout-button, .auth-card button, .auth-container button {
    box-shadow: none !important;
    animation: none !important;
    border: none;
}
.main-btn:hover, .google-btn:hover, .login-button:hover, .username-button:hover, .logout-button:hover, .auth-card button:hover, .auth-container button:hover {
    box-shadow: none !important;
    animation: none !important;
    background: #ffbe5c;
    color: #222;
}

.auth-card input,
.auth-card button {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}
.main-btn, .google-btn {
    padding-left: 0;
    padding-right: 0;
}
.google-btn:hover,
.google-btn:active,
.google-btn.active {
    background: #ffd18c !important;
    color: #222 !important;
}

@media (max-width: 600px) {
  .auth-container {
    padding: 0 0.5rem;
  }
  .auth-card {
    max-width: 100vw;
    width: 95vw;
    padding: 18px 6px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
  }
  .auth-card h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  .auth-card input,
  .auth-card button {
    font-size: 1rem;
    padding: 10px 8px;
    margin: 8px 0;
  }
  .main-btn, .google-btn {
    font-size: 1rem;
    border-radius: 24px;
    margin-bottom: 8px;
  }
  .divider {
    margin: 14px 0 14px;
  }
  .switch-text {
    font-size: 0.95rem;
    margin-top: 8px;
  }
}

