/* ==========================================
   CSS Reset & Base Styles
   ========================================== */

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

:root {
    /* Colors */
    --primary: #d4a017;
    --secondary: #ffffff;
    --accent: #b88400;
    --background: #fffef2;
    --text-primary: #2f2414;
    --text-secondary: #6e5a35;
    --neutral-dark: #ffffff;
    --neutral-light: #fff9dc;
    --surface-muted: #fffbe9;
    --surface-card: #fffef8;
    --border-soft: #f1e4a8;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Sizes */
    --h1-size: 2.2rem;
    --h2-size: 1.8rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--body-size);
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 10%, rgba(255, 238, 0, 0.1), transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   Container & Layout
   ========================================== */

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

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ffee00;
    color: #1f1f1f;
    border: 1px solid #e0d200;
    box-shadow: 0 10px 24px rgba(255, 238, 0, 0.45);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #fff34d;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 238, 0, 0.55);
}

.btn-secondary {
    background: #ffffff;
    color: #1f1f1f;
    border: 1px solid #e7e7e7;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fffde6;
    border-color: #ffee00;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 238, 0, 0.25);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    text-decoration: underline;
    padding: 0.5rem 1rem;
}

.btn-link:hover {
    background: rgba(212, 160, 23, 0.12);
    color: var(--accent);
    text-decoration: none;
    transform: translateX(5px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.header-top-nav a {
    color: rgba(197, 202, 217, 0.5);
    font-size: 0.65rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.1rem 0.25rem;
    border-radius: var(--radius-sm);
    position: relative;
    text-transform: none;
    letter-spacing: 0;
}

.header-top-nav a::after {
    display: none;
}

.header-top-nav a:hover,
.header-top-nav a:focus {
    color: rgba(197, 202, 217, 0.7);
    background: transparent;
}

.header-top-nav a.active {
    color: rgba(197, 202, 217, 0.6);
    background: transparent;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(254, 215, 0, 0.3));
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav a:hover,
.nav a:focus {
    color: var(--primary);
}

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--accent);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--neutral-dark);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-top-nav {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.7;
}

.mobile-top-nav a {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.mobile-top-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.mobile-menu nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu nav a:hover {
    color: var(--primary);
    padding-left: 1rem;
    border-bottom-color: var(--primary);
}

.mobile-menu-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 16, 8, 0.52), rgba(58, 44, 20, 0.32));
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    padding: 0;
}

.hero-layout {
    align-items: center;
    background: rgba(255, 255, 248, 0.62);
    border: 1px solid rgba(255, 238, 0, 0.28);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    backdrop-filter: blur(3px);
    gap: 2.2rem;
}

.hero-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.65;
}

.hero-content .btn {
    margin-top: 0.4rem;
}

.hero .image-content img {
    max-height: 360px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================
   About Section
   ========================================== */

.about {
    padding: var(--spacing-xl) 0;
}

.text-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.image-content {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   Features Section
   ========================================== */

.features {
    padding: var(--spacing-xl) 0;
    background: var(--surface-muted);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(18, 34, 56, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 16px 34px rgba(212, 160, 23, 0.22);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   Bonus Highlight
   ========================================== */

.bonus-highlight {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.bonus-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bonus-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 26, 10, 0.4);
}

.bonus-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bonus-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.bonus-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ==========================================
   Games Section
   ========================================== */

.games {
    padding: var(--spacing-xl) 0;
    background: var(--surface-card);
}

.providers-carousel {
    overflow: hidden;
    margin-top: 3rem;
}

.providers-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.provider-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: var(--transition);
}

.provider-item:hover {
    background: #fff0c8;
    transform: scale(1.05);
}

.provider-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 0.7;
}

.provider-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate items for seamless loop */
.providers-track::after {
    content: '';
    display: flex;
    gap: 3rem;
}

/* ==========================================
   Slots Showcase
   ========================================== */

.slots-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--surface-muted);
}

.slots-carousel {
    overflow: hidden;
}

.slots-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.slots-track:hover {
    animation-play-state: paused;
}

.slot-card {
    width: 250px;
    flex-shrink: 0;
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(47, 31, 0, 0.12);
    transition: var(--transition);
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(184, 132, 0, 0.2);
    border-color: var(--primary);
}

.slot-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slot-card h3 {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text-primary);
    padding: 1rem 1rem 0.5rem;
    min-height: 64px;
}

.slot-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0 1rem 1rem;
}

.slot-actions .btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    min-height: 40px;
}

.slots-extra-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ==========================================
   Reviews Section
   ========================================== */

.reviews {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reviews-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 26, 10, 0.38);
}

.reviews-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.aggregate-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 26px rgba(18, 34, 56, 0.12);
}

.rating-score {
    text-align: center;
}

.score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0;
    justify-content: center;
}

.star {
    color: #dfd2ad;
    font-size: 1.5rem;
}

.star.filled {
    color: var(--primary);
}

.star.half {
    background: linear-gradient(90deg, var(--primary) 50%, #dfd2ad 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-label {
    color: var(--text-secondary);
    font-size: var(--small-size);
    margin-top: 0.5rem;
}

.review-count {
    color: var(--text-secondary);
}

.review-count strong {
    color: var(--text-primary);
}

.reviews-carousel {
    overflow: hidden;
    margin-bottom: 2rem;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 48s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--surface-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(18, 34, 56, 0.12);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(212, 160, 23, 0.2);
    border-color: var(--primary);
}

.review-header {
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.badge-small {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 160, 23, 0.14);
    border-radius: 12px;
    color: var(--primary);
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating .stars {
    gap: 0.2rem;
}

.review-rating .star {
    font-size: 1rem;
}

.review-date {
    font-size: var(--small-size);
    color: var(--text-secondary);
}

.review-comment {
    color: var(--text-secondary);
    line-height: 1.6;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq {
    padding: var(--spacing-xl) 0;
    background: var(--surface-muted);
}

.accordion {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.accordion-header:hover,
.accordion-header:focus {
    background: rgba(212, 160, 23, 0.12);
    padding-left: 1.8rem;
    color: var(--primary);
}

.accordion-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   Content Blocks (Detailed Sections)
   ========================================== */

.detailed-features,
.detailed-bonus,
.detailed-games,
.detailed-payment,
.registration-guide,
.conclusion {
    padding: var(--spacing-xl) 0;
}

.detailed-features {
    background: var(--background);
}

.detailed-bonus {
    background: var(--surface-card);
}

.detailed-games {
    background: var(--surface-muted);
}

.detailed-payment {
    background: var(--surface-card);
}

.registration-guide {
    background: var(--surface-muted);
}

.conclusion {
    background: var(--surface-card);
}

.content-block {
    max-width: 100%;
    margin: 0 auto;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-block h3 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary);
    border-radius: 2px;
}

.content-block ul,
.content-block ol {
    margin-left: 0;
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.content-block ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.content-block ol {
    counter-reset: custom-counter;
}

.content-block ol li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: custom-counter;
    font-weight: 500;
}

.content-block ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: rgba(212, 160, 23, 0.14);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.content-block strong {
    color: var(--text-primary);
}

/* ==========================================
   Payment Methods
   ========================================== */

.payment-methods {
    position: relative;
    padding: var(--spacing-lg) 0;
    text-align: center;
    overflow: hidden;
}

.payment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.payment-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 26, 10, 0.35);
}

.payment-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-methods .container {
    position: relative;
    z-index: 2;
}

.payment-methods h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.payment-logos {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.payment-logos img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ==========================================
   Final CTA
   ========================================== */

.cta-final {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #fff8e5 0%, #ffefc6 100%);
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: #101828;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links h4,
.footer-compliance h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.compliance-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.compliance-badges img {
    height: 40px;
    width: auto;
}

.footer-compliance-text {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
}

.footer-compliance-text p {
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

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

.header {
    background: rgba(16, 24, 40, 0.96);
}

.header .nav a {
    color: #f5f7ff;
}

.header .nav a:hover,
.header .nav a:focus {
    color: #ffd66b;
}

.header .mobile-menu {
    background: #17233a;
}

.bonus-content h2,
.bonus-content p,
.payment-methods h3,
.reviews .section-title,
.reviews .section-subtitle {
    color: #ffffff;
}

.hero-title,
.hero-content p {
    color: var(--text-primary);
}

.footer,
.footer .footer-brand p,
.footer .footer-links a,
.footer .footer-compliance-text p,
.footer .footer-bottom {
    color: #d8c693;
}

.footer .footer-links h4,
.footer .footer-compliance h4 {
    color: #ffffff;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .text-image-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 1.8rem;
        --h2-size: 1.5rem;
    }
    
    .header-top-nav {
        gap: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .header-top-nav a {
        font-size: 0.6rem;
        padding: 0.08rem 0.2rem;
    }

    .header-top-nav {
        display: none !important;
    }
    
    .nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-layout {
        padding: 1rem;
        gap: 1.2rem;
    }

    .hero .image-content img {
        max-height: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .aggregate-rating {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reviews-track {
        gap: 1rem;
    }

    .review-card {
        width: 290px;
    }
    
    .payment-logos {
        gap: 1rem;
    }
    
    .payment-logos img {
        height: 30px;
    }

    .slots-track {
        gap: 1rem;
    }

    .slot-card {
        width: 210px;
    }

    .slot-card img {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }

    .hero .image-content img {
        max-height: 230px;
    }
    
    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
}

/* ==========================================
   Accessibility
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
*:focus-visible {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
}

