/* Color Variables */
:root {
    --midnight-navy: #1B2452;
    --royal-gold: #D4AF37;
    --metallic-bronze: #B08D57;
    --slate-grey: #2E2E3A;
    --pure-white: #FFFFFF;
    --dark-overlay: rgba(27, 36, 82, 0.9);
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F4D03F);
    --shadow-dark: rgba(27, 36, 82, 0.3);
    --shadow-light: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background-color: var(--midnight-navy);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(27, 36, 82, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--royal-gold);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--royal-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.portal-link {
    background: var(--gold-gradient);
    color: var(--midnight-navy) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--pure-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #2A3B7A 100%);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="futsal-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23futsal-pattern)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px; /* Increased padding for better spacing */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px); /* Adjust for navbar */
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px var(--shadow-dark);
    word-wrap: break-word; /* Prevent text overflow */
}

.title-main {
    display: block;
    color: var(--royal-gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    color: var(--pure-white);
    font-size: 3rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    word-wrap: break-word; /* Prevent text overflow */
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--metallic-bronze);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gold-gradient);
    color: var(--midnight-navy);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.primary.blue {
    background: linear-gradient(135deg, #1B2452, #2A3B7A);
    color: var(--royal-gold);
    box-shadow: 0 10px 30px rgba(27, 36, 82, 0.3);
    border: 2px solid var(--royal-gold);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button.primary.blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #2A3B7A, #1B2452);
    color: var(--royal-gold);
}

.cta-button.secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--metallic-bronze);
}

.cta-button.secondary:hover {
    background: var(--metallic-bronze);
    color: var(--midnight-navy);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.futsal-field {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(176, 141, 87, 0.1));
    border: 3px solid var(--metallic-bronze);
    border-radius: 20px;
    margin: 50px 0;
}

.field-line {
    position: absolute;
    border: 2px solid var(--royal-gold);
}

.center-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.penalty-area {
    width: 60px;
    height: 120px;
    top: 50%;
    transform: translateY(-50%);
}

.penalty-area.left {
    left: 0;
    border-right: none;
    border-radius: 0 20px 20px 0;
}

.penalty-area.right {
    right: 0;
    border-left: none;
    border-radius: 20px 0 0 20px;
}

.goal {
    width: 20px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--royal-gold);
}

.goal.left {
    left: -10px;
}

.goal.right {
    right: -10px;
}

.floating-ball {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 3rem;
    color: var(--royal-gold);
    animation: float 3s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--midnight-navy) 0%, #243166 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    background: var(--gold-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--midnight-navy);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Tournament Section */
.tournament {
    padding: 6rem 0;
    background: var(--midnight-navy);
}

.tournament-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tournament-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--royal-gold);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--royal-gold);
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.tournament-rules {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--metallic-bronze);
}

.tournament-rules h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.rules-list i {
    color: var(--royal-gold);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--royal-gold), var(--metallic-bronze));
    color: var(--midnight-navy);
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #0D1238;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--royal-gold);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--royal-gold);
    color: var(--midnight-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--midnight-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 70px; /* Reduced padding for mobile */
        min-height: auto; /* Allow natural height */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 20px; /* More padding for mobile */
        min-height: auto; /* Remove fixed height */
    }

    .hero-text {
        order: 1; /* Ensure text comes first */
    }

    .hero-visual {
        height: 300px;
        order: 2; /* Move visual below text on mobile */
        margin-top: 2rem; /* Add space between text and visual */
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .title-sub {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .tournament-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .futsal-field {
        height: 200px;
        margin: 20px 0;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 2rem 15px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
} 

/* Sports Categories Section */
.sports-categories {
    padding: 6rem 0;
    background: linear-gradient(180deg, #243166 0%, var(--midnight-navy) 100%);
}

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

.sport-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.sport-icon {
    background: var(--gold-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--midnight-navy);
}

.sport-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.sport-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.sport-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--metallic-bronze);
    font-weight: 500;
}

.sport-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gold-gradient);
    color: var(--midnight-navy);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.sport-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--midnight-navy);
}

.sport-btn i {
    font-size: 1rem;
}

/* Invite Download Section */
.invite-section {
    padding: 6rem 0;
    background: var(--midnight-navy);
}

.invite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.invite-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.invite-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.invite-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature i {
    color: var(--royal-gold);
    font-size: 1.2rem;
    width: 20px;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--metallic-bronze);
    backdrop-filter: blur(10px);
}

.download-card i {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    color: var(--midnight-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Sponsors Section */
.sponsors {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--midnight-navy) 0%, #243166 100%);
}

.sponsors-carousel {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 250px;
    flex-shrink: 0;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
}

.sponsor-logo i {
    font-size: 2rem;
}

.sponsor-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--gold-gradient);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-navy);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--royal-gold);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--metallic-bronze);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .invite-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .invite-text h2 {
        font-size: 2rem;
    }

    .sports-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .sport-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .invite-text h2 {
        font-size: 1.8rem;
    }

    .download-card {
        padding: 2rem;
    }

    .sponsor-card {
        padding: 1.5rem;
    }
} 

/* Payment Instructions Section */
.payments {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--midnight-navy) 0%, #243166 100%);
}

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

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.payment-icon {
    background: var(--gold-gradient);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--midnight-navy);
}

.payment-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.payment-details {
    margin-bottom: 1.5rem;
}

.payment-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.payment-details strong {
    color: var(--royal-gold);
}

.payment-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-steps span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.payment-steps i {
    background: var(--royal-gold);
    color: var(--midnight-navy);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.payment-note {
    margin-top: 3rem;
}

.note-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--royal-gold);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.note-card i {
    color: var(--royal-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.note-card h4 {
    color: var(--royal-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.note-card li::before {
    content: "•";
    color: var(--royal-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Payments */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-method {
        padding: 2rem;
    }

    .note-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .payment-steps {
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .payment-method {
        padding: 1.5rem;
    }

    .payment-details p {
        font-size: 0.9rem;
    }

    .payment-steps span {
        font-size: 0.85rem;
    }
} 

/* Responsive Design for Sponsors Carousel */
@media (max-width: 768px) {
    .carousel-track {
        gap: 1rem;
    }

    .sponsor-card {
        min-width: 200px;
        padding: 1.5rem;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sponsor-card {
        min-width: 180px;
        padding: 1rem;
    }

    .sponsor-logo {
        font-size: 1.2rem;
    }

    .sponsor-logo i {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
} 

/* Code of Conduct Section */
.code-of-conduct {
    padding: 6rem 0;
    background: linear-gradient(180deg, #243166 0%, var(--midnight-navy) 100%);
}

.conduct-content {
    margin-top: 3rem;
}

.conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.conduct-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.conduct-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.conduct-icon {
    background: var(--gold-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--midnight-navy);
}

.conduct-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.conduct-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--midnight-navy);
}

.faq-content {
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--metallic-bronze);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--royal-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--royal-gold);
    margin: 0;
}

.faq-question i {
    color: var(--royal-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Tournament Location Section */
.tournament-location {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--metallic-bronze);
}

.tournament-location h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.location-map {
    margin-bottom: 1.5rem;
}

.location-details {
    color: rgba(255, 255, 255, 0.9);
}

.location-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-details i {
    color: var(--royal-gold);
    margin-right: 0.5rem;
}

/* Tournament Images Section */
.tournament-images {
    padding: 6rem 0;
    background: linear-gradient(180deg, #243166 0%, var(--midnight-navy) 100%);
}

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

.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--metallic-bronze);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.image-placeholder:hover {
    border-color: var(--royal-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.placeholder-content i {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Sports Details Page */
.sports-details-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #2A3B7A 100%);
    text-align: center;
    color: var(--pure-white);
}

.sports-details-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--royal-gold);
}

.sports-details-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.sports-details-content {
    padding: 6rem 0;
    background: var(--midnight-navy);
}

.sport-detail-section {
    margin-bottom: 6rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--metallic-bronze);
    backdrop-filter: blur(10px);
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--metallic-bronze);
}

.sport-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--midnight-navy);
    flex-shrink: 0;
}

.sport-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
}

.sport-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.sport-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-card li::before {
    content: "•";
    color: var(--royal-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--midnight-navy) 0%, #243166 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--metallic-bronze);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    background: var(--gold-gradient);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--midnight-navy);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-note {
    display: block;
    color: var(--metallic-bronze);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--metallic-bronze);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--metallic-bronze);
    border-radius: 10px;
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.submit-btn {
    background: var(--gold-gradient);
    color: var(--midnight-navy);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.social-links {
    margin-top: 4rem;
    text-align: center;
}

.social-links h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 2rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--metallic-bronze);
    border-radius: 50px;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--royal-gold);
    color: var(--midnight-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .social-grid {
        gap: 1rem;
    }

    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .tournament-location {
        padding: 2rem;
    }

    .location-map iframe {
        height: 250px;
    }

    .images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-placeholder {
        padding: 2rem 1.5rem;
    }

    .placeholder-content i {
        font-size: 2.5rem;
    }

    .placeholder-content h3 {
        font-size: 1.3rem;
    }

    .sports-details-hero h1 {
        font-size: 2.5rem;
    }

    .sport-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .sport-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .sport-title h2 {
        font-size: 2rem;
    }

    .sport-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sport-detail-section {
        padding: 2rem;
        margin-bottom: 4rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--midnight-navy);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0.9;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.policy-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pure-white);
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--royal-gold);
    margin: 1.5rem 0 0.8rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pure-white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pure-white);
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.policy-section strong {
    color: var(--royal-gold);
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 2rem 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 2rem;
    }
    
    .policy-section h3 {
        font-size: 1.5rem;
    }
    
    .policy-section h4 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
} 