:root {
    --bg-color: #0A0A0A;
    --dark: #161514;
    --gold: #FFBE31;
    --gold-glow: rgba(255, 190, 49, 0.15);
    --white: #ffffff;
    --gray: #a0a0a0;
    --light-gray: #e0e0e0;
    --font-heading: 'Quantico', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

em {
    font-style: italic;
    color: var(--gold);
}

/* Floating Hero Container */
.hero-container {
    position: relative;
    border-radius: 32px;
    height: calc(100vh - 40px);
    background-color: var(--dark);

    /* Fix for sub-pixel anti-aliasing white edge bleed on border-radius */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn-pill-white,
.btn-pill-gold {
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pill-white {
    background: var(--white);
    color: var(--dark);
}

.btn-pill-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.btn-pill-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-pill-gold:hover {
    background: #e6ab2c;
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--gold-glow);
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark) 0%, rgba(22, 21, 20, 0.7) 40%, transparent 100%),
        linear-gradient(0deg, rgba(22, 21, 20, 0.5) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--white);
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.avatar:first-child {
    margin-left: 0;
    background: url('./Assets/football_action.png') center/cover;
}

.avatar:nth-child(2) {
    background: url('./Assets/nashik_stadium.png') center/cover;
}

/* Glass Card in Hero */
.hero-glass-card {
    position: absolute;
    bottom: 40px;
    right: 10%;
    width: 380px;
    background: rgba(22, 21, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header .star {
    color: var(--gold);
}

.card-body {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--gold);
    margin-right: 2px;
}

.price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.price .period {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 5px;
}

.features {
    list-style: none;
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.6;
    flex: 1;
}

/* Sections */
.section {
    padding: 120px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 190, 49, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);

    /* Fix for sub-pixel anti-aliasing white edge bleed */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0);
}

.image-glass-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(22, 21, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.result-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.small-logo {
    width: 24px;
    height: 24px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.match-date {
    font-size: 0.8rem;
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 5% 40px;
    border-radius: 32px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer p {
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

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

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    .split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-glass-card {
        right: 5%;
        bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .hero-container,
    .footer {
        border-radius: 0;
        margin: 0;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 130px;
    }

    .hero-content .badge {
        margin-bottom: 25px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(22, 21, 20, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        align-items: center;
        gap: 20px;
    }

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

    .nav-actions .btn-pill-white {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-glass-card {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 50px;
    }

    .image-glass-card {
        left: 10px;
        bottom: -20px;
    }
}

/* Subpage Styles */
.page-header {
    padding: 150px 5% 50px;
    text-align: center;
}
.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 100px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Contact Form */
.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
}
.form-control:focus { outline: none; border-color: var(--gold); }

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item h3 { color: var(--gold); margin-bottom: 10px; }

/* Membership */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Modal Stepper Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.modal-overlay.show {
    display: flex;
    opacity: 1;
}
.stepper-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}
.stepper-card::-webkit-scrollbar {
    width: 8px;
}
.stepper-card::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.stepper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stepper-header h3 {
    color: var(--white);
    font-size: 1.5rem;
}
.close-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
}
.stepper-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.stepper-progress::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
    transform: translateY(-50%);
}
.step {
    width: 30px; height: 30px;
    background: var(--dark);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
    transition: all 0.3s ease;
}
.step.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 190, 49, 0.1);
}
.step.finish {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-step h4 {
    color: var(--gold);
    margin-bottom: 15px;
}
.form-label {
    display: block;
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.stepper-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}
select.form-control option {
    background: var(--dark);
    color: var(--white);
}