* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0B0B0B;
    color: #FFFFFF;
    line-height: 1.6;
}
/* --- Typography & Paragraph Styling --- */

/* Global Paragraph Style */
p {
    color: #B0B0B0;       /* Light gray is better than pure white for reading */
    font-size: 1.1rem;    /* Slightly larger text */
    line-height: 1.8;     /* Increased line height for dark mode readability */
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    font-weight: 400;
}

/* Hero Section Paragraph - Needs to be punchier */
.hero-content p {
    color: #E0E0E0;       /* Brighter for the main intro */
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Adds depth */
}

/* Info/About Section Paragraph */
.info-container p {
    color: #CCCCCC;
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Feature & Card Paragraphs */
.feature-card p, .app-card p {
    color: #999999;       /* Slightly darker for secondary text */
    font-size: 1rem;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
    color: #D4AF37;       /* Gold accent color */
    margin-bottom: 1rem;
}

h3{
    text-align: center;
}

/* Navbar */
header {
    background-color: rgba(11, 11, 11, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #1a1a1a;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: inline-block;
}
.logo img {
   width: auto;
   height: 80px;
   object-fit: cover;
   transition: transform 0.3s ease, filter 0.3s ease;
   transform: scale(1.1);
}

.logo img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #0F3D3E;
    text-shadow: 0 0 8px rgba(15, 61, 62, 0.4);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: #D4AF37;
    margin: 6px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 14px 40px;
    background-color: #0F3D3E;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #1a5c5e;
    box-shadow: 0 0 15px rgba(15, 61, 62, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background-color: #145253;
    box-shadow: 0 0 25px rgba(20, 82, 83, 0.6);
    transform: translateY(-2px);
    border-color: #D4AF37;
}

/* Sections General */
section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: #D4AF37;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0F3D3E;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #121212;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #222;
   

     border-color: #0F3D3E;
    box-shadow: 0 15px 40px rgba(15, 61, 62, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
   
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.feature-card p {
    color: #aaa;
}


/* Football Section */
.football-content {
    text-align: center;
    margin-bottom: 4rem;
}

.football-content h2 {
    margin-bottom: 1.5rem;
}

.football-content p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-slide-track {
    display: flex;
    align-items: center;
    /* Logo width 140px + margin 64px = 204px. 10 logos total. */
    width: calc(204px * 10);
    height: 100%;
    animation: scroll-right 30s linear infinite;
}

.logo-slide-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 140px;
    margin: 0 32px;
    /* 64px gap */
    flex-shrink: 0;
    text-align: center;
}

.logo-slide img {
    max-width: 160px;
    object-fit: cover;
    width: 100%;
    height: 100px;
    opacity: 0.6;
    border-radius: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-slide img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.info-container {
    text-align: center;
    background: linear-gradient(145deg, #121212, #0B0B0B);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.info-container p {
    color: #bbb;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Movies Slider */
.movies-slider {
    text-align: center;
    overflow: hidden;
}

.movies-text {
    margin-bottom: 3rem;
}

.movies-text p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    /* Optional: Fade effect on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slide-track {
    display: flex;
    width: calc(220px * 16);
    /* (Image Width 200px + Margin 20px) * 16 slides */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 200px;
    height: 300px;
    margin: 0 10px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
    border: 1px solid #D4AF37;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 8));
        /* Move by width of one set of images */
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-204px * 5));
    }

    100% {
        transform: translateX(0);
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: #121212;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}



.pricing-card.popular {
    border: 1px solid #D4AF37;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.95rem;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-btn:hover {
    background-color: #D4AF37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.pricing-card.popular .pricing-btn {
    background-color: #D4AF37;
    color: #000;
}

.pricing-card.popular .pricing-btn:hover {
    background-color: #0F3D3E;
    border-color: #0F3D3E;
    color: #FFFFFF;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D4AF37;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Apps Section */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.app-card {
    background: #121212;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.app-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.app-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.app-card p {
    color: #aaa;
    font-size: 1rem;
}

.app-card .pricing-btn {
    margin-top: 1.5rem;
}

/* FAQ */
.faq-item {
    background: #121212;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #333;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: #161616;
    color: #FFFFFF;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-item.active .faq-question {
    color: #D4AF37;
    background: #1a1a1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.3s ease;
    background: #121212;
    color: #aaa;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.toggle {
    font-size: 1.5rem;
    color: #D4AF37;
}

.footer-links {
    margin-bottom: 1.5rem;
    color: #666;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Footer */
footer {
    background: #0B0B0B;
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
    border-top: 1px solid #1a1a1a;
    color: #666;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D4AF37;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #FFF;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #0B0B0B;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        border-left: 1px solid #222;
    }

    .nav-links li {
        opacity: 0;
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}