/* Dance Africa - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Common Page Styles */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Page 1 - Hero Styles */
.hero-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 .highlight {
    /* This overrides the parent's gradient text effect for just this word */
    background: none;
    -webkit-text-fill-color: #f2a808;
    color: #f2a808; /* Fallback for non-webkit browsers */
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(45deg, #f4ca04, #f2a808);
    color: rgb(66, 65, 65);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.dance-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.dance-icon {
    font-size: 8rem;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: floatRandom 8s ease-in-out infinite;
}

.floating-1 { width: 60px; height: 60px; top: 20%; left: 10%; animation-delay: -2s; }
.floating-2 { width: 40px; height: 40px; top: 60%; right: 15%; animation-delay: -4s; }
.floating-3 { width: 80px; height: 80px; bottom: 20%; left: 20%; animation-delay: -6s; }

/* Page 2 - About Styles */
.about-page {
    background: #f8f9fa;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-logo-link {
    display: block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.page-logo-link:hover {
    transform: scale(1.05);
}

.page-logo-link img {
    height: 100px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    margin-bottom: 1rem;
}

.form-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 450px; /* Ensures the form doesn't get too wide */
}

.form-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.form-header-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.logo-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-field input, .form-field select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: #667eea;
}

.about-text {
    animation: fadeInRight 1s ease-out;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #2c3e50;
    animation: fadeInUp 0.6s ease-out var(--delay);
}

.features-list li:nth-child(1) { --delay: 0.1s; }
.features-list li:nth-child(2) { --delay: 0.2s; }
.features-list li:nth-child(3) { --delay: 0.3s; }
.features-list li:nth-child(4) { --delay: 0.4s; }
.features-list li:nth-child(5) { --delay: 0.5s; }
.features-list li:nth-child(6) { --delay: 0.6s; }

.features-list li i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Page 3 - Login Styles */
.login-page {
    background: linear-gradient(135deg, #1d242c 0%, #2c3e50 100%); /* Darker background */
    color: white;
    position: relative;
    overflow: hidden; /* Contain the glows */
}

/* Background glows for the login page */
.login-page::before,
.login-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(250px); /* Softer, larger blur */
    z-index: 0;
    pointer-events: none; /* Make sure they don't interfere with clicks */
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Dark blue glow on the left */
.login-page::before {
    width: 700px;
    height: 700px;
    background: rgba(52, 152, 219, 0.4); /* More visible */
    top: 10%;
    left: -350px;
    animation-name: moveGlow;
    animation-duration: 20s;
}

/* Yellowish glow */
.login-page::after {
    width: 550px;
    height: 550px;
    background: rgba(242, 168, 8, 0.35); /* More visible */
    bottom: 10%;
    right: 5%;
    animation-name: moveGlow;
    animation-duration: 25s;
    animation-direction: reverse;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 0.9rem;
}

.form-checkbox.small-text {
    align-items: flex-start;
}

.form-checkbox input {
    margin-right: 0.5rem;
}

.form-checkbox.small-text input {
    margin-top: 0.25rem;
}

.form-link {
    color: #f2a808;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: wheat;
}

.form-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.form-divider::before {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 0;
}

.form-divider span {
    background: #2c3e50;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.form-footer-note {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-footer-note a {
    color: wheat;
    text-decoration: none;
    font-weight: 600;
}

/* Signup Modal */
.signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: flex-start; /* Align modal to the top to prevent overflow issues */
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    overflow-y: auto; /* Allow scrolling for tall content */
}

.signup-modal.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.signup-modal-content {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.signup-modal.is-visible .signup-modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.signup-modal-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.signup-main-content {
    transition: grid-template-columns 0.5s ease;
}

.account-type-selector {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* On medium screens and up, show account types side-by-side */
@media (min-width: 768px) {
    .account-type-selector {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.account-type-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.account-type-card:hover {
    border-color: rgba(242, 168, 8, 0.5);
    transform: translateY(-5px);
}

.account-type-card.active {
    border-color: #f2a808;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(242, 168, 8, 0.3);
}

.account-type-card-inner {
    display: flex;
    align-items: center;
}

.account-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.account-type-icon i {
    color: white;
    font-size: 1.5rem;
}

.account-type-icon.talent-icon {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.account-type-icon.client-icon {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.account-type-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.account-type-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.account-type-tag {
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
}

.account-type-tag.tag-free {
    background: #27ae60;
}

.account-type-tag.tag-paid {
    background: #f39c12;
}

.signup-form-fields {
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s 0.2s ease-out; /* Let JS handle max-height transition */
    opacity: 0;
}

/* When form is active, it becomes visible */
.signup-modal-content.form-is-active .signup-form-fields {
    /* max-height is now controlled by JS for dynamic content */
    opacity: 1;
    margin-top: 2rem;
}

.signup-form-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

/* Login Page Features Section */
.login-features-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.login-features-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.login-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.login-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.login-feature-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.login-feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.login-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.login-feature-icon.icon-secure {
    color: #27ae60;
}

.login-feature-icon.icon-community {
    color: #3498db;
}

.login-feature-icon.icon-analytics {
    color: #ff6b6b;
}

.login-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative; /* To sit on top of the glows */
    z-index: 1;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.login-illustration {
    width: 420px;
    height: 420px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: morph 8s ease-in-out infinite;
    overflow: hidden; /* This will clip the image to the morphing shape */
}

.login-illustration i {
    font-size: 4rem;
    color: white;
}

.illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image distortion */
    mix-blend-mode: luminosity; /* Blends the image with the background gradient */
    opacity: 0.8;
}

.login-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInRight 1s ease-out;
}

.login-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-field {
    margin-bottom: 1.5rem;
}

.login-field input {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-field input:focus {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    outline: none;
    transform: scale(1.02);
}

.login-field input::placeholder {
    color: rgba(255,255,255,0.7);
}

.login-button {
    width: 100%;
    background: #f2a808 ;
    color: rgb(2, 2, 2);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Decorative elements for login page */
.deco-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation-name: floatRandom;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.deco-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-duration: 6s;
}

.deco-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 15%;
    animation-duration: 8s;
    animation-direction: reverse;
}

.deco-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 20%;
    animation-duration: 10s;
}

/* Footer */
.footer {
    background: #0a0e11;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f2a808;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: wheat;
}

/* Features & CTA Section */
.features-cta-section {
    padding: 5rem 2rem;
    background-color: #12161b;
    /* A dark, clean background */
    color: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: #121316;
    /* Matches footer color */
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 0.5px solid #845c05;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon.icon-talent {
    color: #f2a808;
}

.feature-icon.icon-client {
    color: #f2a808;
}

.feature-icon.icon-secure {
    color: #f2a808;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.cta-container {
    background: linear-gradient(135deg, #10161d, #131b23);
    padding: 3rem;
    border-radius: 20px;
    border: 0.5px solid #845c05;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: transparent;
    color: wheat;
    border: 2px solid #f2a808;
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: #f2a808;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* --- Signup Modal Payment Section --- */
.signup-form-fields .payment-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: none; /* Hidden by default, shown with JS */
    animation: fadeIn 0.5s ease;
}

.signup-form-fields .payment-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.payment-option.active {
    border-color: #f2a808;
    background-color: rgba(242, 168, 8, 0.1);
    color: #f2a808;
}

.payment-option i {
    font-size: 1.5rem;
}

.payment-option span {
    font-weight: 500;
}

/* --- Signup Modal Payment Section --- */
.signup-form-fields .payment-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: none; /* Hidden by default, shown with JS */
    animation: fadeIn 0.5s ease;
}

.signup-form-fields .payment-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.payment-option.active {
    border-color: #f2a808;
    background-color: rgba(242, 168, 8, 0.1);
    color: #f2a808;
}

.payment-option i {
    font-size: 1.5rem;
}

.payment-option span {
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes morph {
    0%, 100% {
        border-radius: 50% 20% 50% 20%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 20% 50% 20% 50%;
        transform: scale(1.05) rotate(5deg);
    }
    50% {
        border-radius: 40% 40% 60% 60%;
        transform: scale(1) rotate(-5deg);
    }
    75% {
        border-radius: 60% 30% 40% 70%;
        transform: scale(1.05) rotate(0deg);
    }
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, -100px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content, .about-content, .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .dance-circle {
        width: 300px;
        height: 300px;
    }

    .login-illustration {
        width: 300px;
        height: 300px;
    }

    .dance-icon {
        font-size: 6rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .page {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .dance-circle {
        width: 250px;
        height: 250px;
    }

    .login-illustration {
        width: 250px;
        height: 250px;
    }

    .dance-icon {
        font-size: 4rem;
    }

    .form-mockup {
        padding: 1.5rem;
        transform: rotate(0deg);
    }

    .login-form {
        padding: 2rem;
    }
}