/* ============================================
   CCTV RUSH HOUR - MODERN CSS STYLESHEET
   Author: CCTV Rush Hour Official
   Year: 2026
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - CCTV Surveillance Theme */
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #06b6d4;

    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;

    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;

    --border-color: #e5e7eb;
    --border-dark: #d1d5db;

    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 100px;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary-alt {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-alt:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

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

.nav-cta-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO COMPACT SECTION
   ============================================ */
.hero-compact {
    background: linear-gradient(135deg, #0c4a6e 0%, #164e63 50%, #0f172a 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-compact-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.hero-compact-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-compact-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.hero-compact-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-compact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-compact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-compact-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.rating-stars-small {
    font-size: 1rem;
}

.rating-text-small {
    font-size: 0.875rem;
}

/* Right Column - Game Image/Iframe */
.hero-compact-game {
    position: relative;
    width: 100%;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.game-iframe-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-preview-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   IMAGE SHOWCASE
   ============================================ */
.image-showcase {
    margin: 3rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   STAT HIGHLIGHTS
   ============================================ */
.stat-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.stat-highlight:hover {
    transform: translateY(-5px);
}

.stat-highlight-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-highlight-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   INFO TABLE
   ============================================ */
.info-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    text-align: left;
    padding: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--bg-light);
    width: 40%;
}

.info-table td {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ============================================
   HOW IT WORKS STEPS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   PALIER / BET TYPE BLOCKS
   ============================================ */
.palier-block {
    margin: 3rem 0;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.palier-header {
    margin-bottom: 2rem;
    text-align: center;
}

.palier-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.palier-badge-mid {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.palier-badge-high {
    background: linear-gradient(135deg, #ec4899, #c026d3);
}

.palier-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.palier-content p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.0625rem;
    color: var(--text-light);
}

.palier-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
}

.testimonial-rating {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   BONUS / FEATURES SECTION
   ============================================ */
.bonus-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #164e63 100%);
    color: white;
}

.bonus-section .section-title,
.bonus-section .section-subtitle {
    color: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.bonus-card {
    background: white;
    color: var(--text-dark);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.bonus-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.bonus-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bonus-impact {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.bonus-summary {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.bonus-summary p {
    font-size: 1.0625rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.bonus-summary p:last-child {
    margin-bottom: 0;
}

/* ============================================
   LOCATIONS GRID
   ============================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.location-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.location-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.location-country {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   DEMO SECTION
   ============================================ */
.demo-content {
    max-width: 900px;
    margin: 0 auto;
}

.demo-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
}

.demo-benefits {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.demo-benefits h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.demo-benefits ul {
    display: grid;
    gap: 1.25rem;
}

.demo-benefits li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
}

.demo-cta {
    text-align: center;
    margin: 3rem 0;
}

/* ============================================
   MOBILE SECTION
   ============================================ */
.mobile-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
}

.mobile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   RTP SECTION
   ============================================ */
.rtp-content {
    max-width: 900px;
    margin: 0 auto;
}

.rtp-highlight {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    box-shadow: var(--shadow-xl);
}

.rtp-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.rtp-label {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 600;
}

.rtp-content > p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
}

.rtp-comparison {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.rtp-comparison h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.rtp-comparison ul {
    display: grid;
    gap: 1rem;
}

.rtp-comparison li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ============================================
   STUDIO SECTION
   ============================================ */
.studio-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   AVIS / REVIEWS SECTION
   ============================================ */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.avis-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.avis-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.avis-rating {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.avis-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.avis-author {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-tips {
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    max-width: 900px;
}

.responsible-tips h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.responsible-tips ul {
    display: grid;
    gap: 1.25rem;
}

.responsible-tips li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.help-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.help-contact p {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.help-contact a {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #164e63 50%, #0f172a 100%);
    color: white;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.cta-description, .cta-summary {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.cta-feature {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}

.final-rating {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.rating-badge {
    margin-bottom: 1.5rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 2rem;
    margin: var(--spacing-sm) 0;
}

.rating-tagline {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    transition: all var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* ============================================
   BOTTOM BAR FIXED
   ============================================ */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.bottom-bar-text {
    flex: 1;
}

.bottom-bar-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
}

.bottom-bar-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.bottom-bar-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transition: all var(--transition-base);
    border: 2px dotted rgba(255, 255, 255, 0.3);
}

.bottom-bar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
}

/* ============================================
   CASINO COMPARISON TABLE
   ============================================ */
.casino-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.casino-table thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-align: left;
}

.casino-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-dark);
}

.casino-table tbody tr:hover {
    background: var(--bg-light);
}

.casino-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   INTERNAL PAGE SPECIFIC
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #164e63 50%, #0f172a 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem var(--spacing-md);
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 2;
    color: var(--text-light);
}

.page-content strong {
    color: var(--text-dark);
}

.page-content ul {
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.page-content ul li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.page-content ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Promo Code Box */
.promo-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0c4a6e, #164e63);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
}

.promo-code {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 1.5rem 0;
}

.promo-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* App Download Section */
.app-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-platform-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.app-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.app-platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-platform-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.app-platform-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-compact {
        padding: 2.5rem 0;
    }

    .hero-compact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-compact-title {
        font-size: 2.25rem;
    }

    .hero-compact-intro {
        font-size: 1rem;
    }

    .hero-compact-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-iframe-wrapper {
        padding-bottom: 75%;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .bottom-bar {
        padding: 1rem 0;
    }

    .bottom-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .bottom-bar-title {
        font-size: 1.125rem;
    }

    .bottom-bar-subtitle {
        font-size: 0.875rem;
    }

    .bottom-bar-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    body {
        padding-bottom: 140px;
    }
}

@media (max-width: 640px) {
    .hero-compact {
        padding: 2rem 0;
    }

    .hero-compact-title {
        font-size: 1.875rem;
    }

    .hero-compact-features {
        grid-template-columns: 1fr;
    }

    .hero-compact-cta {
        flex-direction: column;
    }

    .hero-compact-cta .btn {
        width: 100%;
        text-align: center;
    }

    .stat-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .avis-grid {
        grid-template-columns: 1fr;
    }

    .rtp-value {
        font-size: 3rem;
    }

    .promo-code {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.05em;
    }

    .palier-block {
        padding: 1.5rem;
    }

    .palier-title {
        font-size: 1.25rem;
    }

    .stat-highlight-value {
        font-size: 2rem;
    }

    .hero-compact-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   CTA EMPHASIS & ANIMATIONS
   ============================================ */
.btn-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(255, 215, 0, 0.6);
    }
}

.bottom-bar-btn {
    animation: bottomBarPulse 2.5s ease-in-out infinite;
}

.bottom-bar-btn:hover {
    animation: none;
}

@keyframes bottomBarPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 28px rgba(16, 185, 129, 0.7);
    }
}

/* ============================================
   MOBILE NAV CTA
   ============================================ */
@media (max-width: 768px) {
    .nav.active {
        padding-bottom: 1.5rem;
    }

    .nav-cta-mobile {
        display: block !important;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.875rem 1.5rem;
        background: linear-gradient(135deg, #ffd700, #ffb700);
        color: #000 !important;
        font-weight: 700 !important;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    /* Info table responsive */
    .info-table th,
    .info-table td {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .info-table th {
        width: 35%;
    }

    /* Casino table card layout on mobile */
    .casino-table {
        min-width: 500px;
    }

    .casino-table thead th,
    .casino-table tbody td {
        padding: 0.875rem 0.75rem;
        font-size: 0.8125rem;
    }

    /* Promo box responsive */
    .promo-box {
        padding: 1.5rem;
    }

    /* App platform cards */
    .app-platforms {
        grid-template-columns: 1fr;
    }

    .app-platform-card {
        padding: 1.5rem;
    }
}

/* ============================================
   EXTRA SMALL SCREENS
   ============================================ */
@media (max-width: 380px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 2.5rem 0 2rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .bottom-bar-title {
        font-size: 1rem;
    }

    .bottom-bar-subtitle {
        font-size: 0.75rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .casino-table {
        min-width: 420px;
    }

    .casino-table thead th,
    .casino-table tbody td {
        padding: 0.625rem 0.5rem;
        font-size: 0.75rem;
    }
}