:root {
    --primary-color : #F00;
    /* Gold */
    --primary-hover: #B71C1C;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --transition: all 0.3s ease;
    --padding-section: 80px 0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color:#F00;
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    max-width: 150px;
    height: auto;
}

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

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, #0000 0%, #78787833 100%), url('../img//hero/sports_hero_background.webp') center top/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Note: Assuming hero-bg.jpg exists or will be replaced. For now using a dark placeholder in CSS if image missing */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(to right, red, rgb(231, 231, 231));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* How To Order */
.howto-section {
    padding: var(--padding-section);
    background-color: #151515;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.howto-card {
    background-color: var(--bg-card);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.howto-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.howto-title {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.howto-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--padding-section);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
}

.toggle-label.active {
    color: #F00;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #333;
    border-radius: 15px;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.premium::after {
    left: 33px;
}

.pricing-swiper {
    padding: 40px 20px;
    margin: -40px -20px;
    /* Offset the padding to maintain alignment if needed, or just padding */
}

.pricing-container {
    display: none;
}

.pricing-container.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}


.pricing-card.popular {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.95), rgba(25, 25, 25, 0.98));
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(183, 28, 28, 0.15);
    transform: scale(1.02);
}


.popular-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: #a00000;
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1.5rem;
    display: block;
}

.plan-price {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-left: 5px;
}

.pricing-features {
    margin: 30px 0 40px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #d0d0d0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--primary-color);
    background: rgba(183, 28, 28, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-features li strong {
    color: #fff;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: var(--padding-section);
    background: linear-gradient(to bottom, #0f0f0f, #161616);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 28, 28, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.8));
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(25, 25, 25, 0.9));
    border-color: rgba(183, 28, 28, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(183, 28, 28, 0.1);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 30px rgba(183, 28, 28, 0.4);
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: var(--padding-section);
}

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

.review-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-author {
    font-weight: 700;
    color: var(--text-white);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 250px;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 100px;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .logo {
        max-width: 120px;
    }
}



/* FAQ Section */
.faq-section {
    padding: var(--padding-section);
    background-color: var(--bg-dark);
}

.faq-grid {
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-item[open] {
    background-color: #222;
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 1.1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

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

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.faq-answer p {
    margin-top: 15px;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-features li {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features li i {
    color: var(--primary-color);
}

/* Payment Methods Image */
.payment-methods-img {
    display: block;
    margin: 20px auto 0;
    max-width: 80%;
    height: 30px;
    object-fit: contain;
    opacity: 1;
}

.contact-section {
    padding: 120px 0 80px;
    /* Top padding for fixed header */
}

.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    color: var(--text-gray);
}

.guide-section {
    padding: 120px 0 80px;
}




.legal-section {
    padding: 120px 0 80px;
}

.legal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-item {
    margin-bottom: 30px;
}

.legal-item h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.legal-item p,
.legal-item div {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-item strong {
    color: var(--primary-color);
}




.nassr-section {
    padding: 3rem 1rem;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}


.nassr-section .section-content {
    text-align: left;
    max-width: 800px;
    margin: 0 0 5rem 5%;
    position: relative;
    width: 70%;
}

.nassr-title {
    font-size: 1rem;
    color: #F00;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;

}

.nassr-section h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    line-height: 1.2;
}

.nassr-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-swiper {
    max-width: 1200px;
    margin: 4rem 5% 0 5%;
    position: relative;

    width: 100%;
}

.nassr-slide {
    padding: 0.5rem;
    margin: 0;
}

.nassr-content {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    align-items: center;
    justify-content: center;
}

.nassr-content:hover {
    transform: translateY(-5px);
}

.nassr-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.nassr-content:hover img {
    transform: scale(1.05);
}

/* New Title Styling Overlay */
.nassr-content h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    margin: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 10;
}

/* Responsive Design for Nassr Section */
@media (max-width: 1200px) {
    .nassr-content {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .nassr-content {
        max-width: 200px;
    }
}

@media (max-width: 1024px) {
    .nassr-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .nassr-section .section-content {
        margin: 0 0 4rem 3%;
        width: 100%;
    }

    .section-content {
        margin: 0 0 4rem 3%;
        width: 100%;
    }

    .nassr-swiper {
        margin: 3rem 0 0 0;
        width: 100%;
    }

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



    .nassr-slide {
        padding: 0;
        margin: 0;
    }

    .nassr-content {
        max-width: 260px;
    }
}

@media (max-width: 576px) {
    .nassr-content {
        max-width: 240px;
    }
}





.swiper-container {
    max-width: 1200px;
    overflow: hidden;
}

.swiper-slide {
    height: 60px;
}

.swiper-slide img {
    width: 99%;
    height: 99%;
    object-fit: cover;
    border-radius: 8px;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--secondary-bg);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item input {
    display: none;
}

.accordion-item-title {
    display: block;
    padding: 20px;
    background-color: var(--secondary-bg);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.accordion-item-title:hover {
    background-color: rgba(229, 9, 20, 0.1);
    color: var(--primary-color);
}

.accordion-item-title .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.accordion-item-title .icon::before,
.accordion-item-title .icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 2px;
}

.accordion-item-title .icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.accordion-item-title .icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.accordion-item input:checked+.accordion-item-title .icon {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-item input:checked+.accordion-item-title {
    color: var(--primary-color);
    background-color: rgba(229, 9, 20, 0.05);
}

.accordion-item-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #1a1a1a;
    /* Fallback or specific dark bg */
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item input:checked~.accordion-item-desc {
    max-height: 3000px;
    /* Allow enough height for images */
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item-desc img {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.accordion-item-desc strong,
.accordion-item-desc b {
    color: var(--text-color);
}
/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}