* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

::selection {
    background: transparent;
}

:root {
    --primary: #ffee02;
    --secondary: #1b232e;
    --accent-1: #f5f5f5;
    --accent-2: #666666;
    --dark: #ffffff;
    --light-bg: #fafafa;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--dark);
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark) 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.cta-button {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 238, 2, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    font-size: 24px;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.hero-description strong {
    color: var(--primary);
    font-weight: bold;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 238, 2, 0.3);
}

.feature-icon {
    font-size: 24px;
}

.hero-cta {
    font-size: 18px;
    padding: 1.2rem 2.5rem;
    margin: 0;
    white-space: nowrap;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.hero p {
    font-size: 20px;
    margin-bottom: 2rem;
    color: var(--secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto 0 auto;
}

.section-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 238, 2, 0.3);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.section-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--secondary);
}

/* Categories Slider */
.categories-slider-container {
    position: relative;
    margin: 2rem 0;
    padding: 0 3rem;
}

.categories-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    scroll-snap-type: x mandatory;
}

.category-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    scroll-snap-align: start;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    border-radius: 15px;
    border: 2px solid rgba(255, 238, 2, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 238, 2, 0.3);
    border-color: var(--primary);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    padding: 0 1.5rem;
}

.category-card p {
    color: var(--accent-2);
    font-size: 14px;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
    flex-grow: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--secondary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.2);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 238, 2, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.provider-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 238, 2, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 238, 2, 0.3);
    border-color: var(--primary);
}

.provider-logo {
    max-width: 100%;
    max-height: 63px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.provider-item:hover .provider-logo {
    filter: grayscale(0%);
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    position: relative;
    padding-left: 2rem;
    color: var(--secondary);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Bonus Section */
.bonus-details {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid var(--primary);
}

.bonus-list {
    list-style: none;
}

.bonus-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.promotions-list {
    list-style: none;
    margin-top: 2rem;
}

.promotions-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    color: var(--secondary);
}

/* Payment Info */
.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    background: transparent;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    color: var(--secondary);
}

.info-item strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(27, 35, 46, 0.2);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 238, 2, 0.3);
}

.faq-question {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 1rem;
    margin-top: 0;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table th {
    background: var(--primary);
    color: var(--secondary);
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--secondary);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: rgba(255, 238, 2, 0.05);
}

/* Two columns layout */
.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.two-columns h4 {
    margin-top: 0;
}

.two-columns p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--accent-1);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid var(--primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--accent-2);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.footer-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logos img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-main-image {
        max-width: 80%;
    }

    section {
        padding: 2rem 1rem;
    }

    .section-content {
        padding: 1.5rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-slider-container {
        padding: 0 2.5rem;
    }

    .category-slide {
        flex: 0 0 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-content {
    animation: fadeInUp 0.6s ease-out;
}
