:root {
    --bg-dark: #050a1a;
    /* Deep Midnight Blue */
    --primary: #ff8c00;
    /* Afrolympics Orange */
    --primary-glow: rgba(255, 140, 0, 0.2);
    --secondary: #0a162e;
    /* Navy Blue */
    --text-main: #ffffff;
    --text-dim: #b0c4de;
    /* Sky Blue/Gray for contrast */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(135, 206, 250, 0.1);
    /* Subtle blue tint */
    --card-bg: #0d1b3e;
    /* Lighter Navy Blue */
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 100;
}

.glow {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--text-main);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

/* Header / Hero */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 0;
    /* 80px Top Padding für die Navbar */
    position: relative;
    background: radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.2;
    z-index: -1;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-info {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
}

.info-item i {
    color: var(--primary);
    width: 24px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-badge {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

h3,
h4 {
    text-transform: uppercase;
}

/* Early Access Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #000;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card.highlighted {
    background: #000 !important;
    border: 1px solid var(--primary);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

    .info-section h2 {
        font-size: 2.5rem;
    }
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--glass);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.icon-wrap i {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-dim);
}

/* Tickets section */
.tickets {
    background: #0d0e12;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-features i {
    color: var(--secondary);
    width: 20px;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.payment-methods h3 {
    margin-bottom: 3rem;
    color: var(--text-dim);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 1;
    /* Always visible and colored */
    transition: var(--transition);
}

.payment-item {
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    height: 35px;
    /* Consistent height */
    width: auto;
    object-fit: contain;
}

.payment-icons:hover .payment-item {
    transform: scale(1.1);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

input {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    width: 100%;
}

/* Payment Selector in Modal */
.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pay-option {
    cursor: pointer;
}

.pay-option input {
    display: none;
}

.pay-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    height: 50px;
    transition: var(--transition);
}

.pay-box img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.pay-option input:checked+.pay-box {
    border-color: var(--primary);
    background: rgba(255, 140, 0, 0.1);
}

/* Ticket Visual with QR */
.ticket-visual {
    background: #000;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 15px 0;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-wrap {
    background: #fff;
    padding: 0.75rem;
    border-radius: 12px;
    width: 130px;
    height: 130px;
}

.qr-wrap img {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    padding: 50px 5%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
}

/* Hero Image Overlay */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Zentriert horizontal */
    align-items: center;
    /* Zentriert vertikal */
}

.floating-flyer {
    width: 100%;
    max-width: 441px;
    /* Um 30% von 630px reduziert */
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    /* Remove the 3D rotation to ensure full visibility and clean layout */
    transform: none;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: block;
}

.floating-flyer:hover {
    transform: scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--primary-glow);
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--bg-dark), #0d0e12);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sport-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sport-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.sport-list i {
    color: var(--primary);
}

.about-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stats-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location / Map */
.location {
    padding-bottom: 0;
}

.map-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 11, 13, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    max-width: 320px;
    z-index: 10;
}

.map-overlay i {
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-overlay p {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Success Step & Ticket Visual */
.success-header {
    text-align: center;
    margin-bottom: 1rem;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-icon i {
    width: 64px;
    height: 64px;
}

.screenshot-info {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.screenshot-info .warning-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.screenshot-info .action-text {
    font-weight: 600;
    display: block;
}

.screenshot-info .sub-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    color: var(--text-dim);
}

.ticket-visual {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.qr-wrap {
    background: white;
    padding: 0;
    width: 200px;
    height: 200px;
}

.qr-wrap img {
    width: 100%;
    height: 100%;
}

.ticket-code-box {
    background: #f9f9f9;
    border: 2px dashed #000;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.code-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #666;
    letter-spacing: 2px;
}

.code-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 3px;
    font-family: monospace;
}

.payment-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: -0.5rem;
}

/* Phased Tickets */
.phase-status {
    background: var(--primary);
    color: #000;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.phase-status.locked {
    background: var(--glass);
    color: var(--text-dim);
}

.phase-locked {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.2);
    border-color: var(--glass-border) !important;
}

.active-phase {
    border-color: var(--primary) !important;
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--primary-glow);
}

.limit-info {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-dim);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Gender Selector */
.gender-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gender-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.gender-option input {
    position: absolute;
    opacity: 0;
}

.gender-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.gender-box i {
    width: 24px;
    height: 24px;
}

.gender-option input:checked+.gender-box {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
}

/* Form Elements */
.custom-select {
    width: 100%;
    background: var(--card-bg);
    /* Solid background for visibility */
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px var(--primary-glow);
}

.custom-select option {
    background: var(--card-bg);
    color: #fff;
    padding: 10px;
}

/* Registration Section */
.registration {
    background: linear-gradient(to top, var(--bg-dark), #0a162e);
    text-align: center;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reg-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reg-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reg-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.reg-card p {
    color: var(--text-dim);
}

/* Premium Mobile Optimization */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .hero-info {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        margin-top: 4rem;
        justify-content: center;
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2000;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 10, 26, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        gap: 3rem;
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 2px;
    }
}

/* Competition Info & Scoring Section */
.info-section {
    padding: 100px 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.info-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.info-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-dim);
}

.info-content ul li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.schedule-img-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.schedule-img-box:hover {
    transform: scale(1.02);
}

.schedule-img-box img {
    width: 100%;
    display: block;
}

/* Scoring & Points */
.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.point-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.point-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 140, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.medal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.point-card h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.medal-val {
    display: block;
    font-weight: 900;
    color: var(--primary);
    font-size: 2rem;
}

.point-card.gold {
    border-top: 4px solid #ffd700;
}

.point-card.silver {
    border-top: 4px solid #c0c0c0;
}

.point-card.bronze {
    border-top: 4px solid #cd7f32;
}

@media (max-width: 768px) {
    .points-grid {
        grid-template-columns: 1fr;
    }
}

/* Stadium Gallery */
.stadium-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 968px) {

    .info-grid,
    .stadium-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sport-list {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-visual {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .stats-card {
        flex: 1;
        min-width: 140px;
        padding: 2rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-card.popular {
        transform: none;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .payment-icons {
        gap: 1.5rem;
    }

    .payment-item img {
        height: 28px;
    }

    .map-container {
        height: 400px;
    }

    .map-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        padding: 2rem;
        margin-top: -40px;
        border: none;
        border-top: 1px solid var(--glass-border);
    }

    .price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .stats-card {
        min-width: 100%;
    }

    .payment-selector {
        grid-template-columns: 1fr;
    }

    .payment-icons {
        gap: 1rem;
    }
}

/* Slideshow styles */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mySlides {
    display: none;
    height: 600px;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--glass-border);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: var(--primary);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Expanded Footer Styles */
.main-footer {
    background: #02050d;
    padding: 100px 5% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--primary);
}

.footer-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-dim);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.social-links a svg,
.social-links a i {
    width: 24px;
    height: 24px;
}


.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary);
    width: 18px;
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .mySlides {
        height: 400px;
    }
}