/* ============================================
   TOWER RUSH - MODERN CSS STYLESHEET
   Author: Tower Rush Official
   Year: 2026
   ============================================ */

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

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #ec4899;

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

    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #111827;

    --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;
}

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-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 2rem;
}

.top-bar-link {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--secondary-color);
}

.top-bar-bonus {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    transition: all var(--transition-base);
}

.top-bar-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

/* ============================================
   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-img {
    width: 50px;
    height: auto;
}

.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);
}

.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 SECTION
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(255,255,255,0.05)" d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.platforms-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.platforms-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.platform-icon {
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
}

.hero-image {
    position: relative;
}

.game-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.1);
}

.game-preview img {
    width: 100%;
    height: auto;
}

.game-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.game-preview:hover .game-preview-overlay {
    opacity: 1;
}

.play-video-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.play-video-btn:hover {
    transform: scale(1.1);
    background: white;
}

/* ============================================
   HERO COMPACT SECTION
   ============================================ */
.hero-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

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

/* Left Column - Text Content */
.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.15);
    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.2);
}

.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 Iframe */
.hero-compact-game {
    position: relative;
    width: 100%;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@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%; /* Taller aspect ratio for mobile */
    }
}

@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;
    }
}

/* ============================================
   GAME INFO SECTION
   ============================================ */
.game-info {
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

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

.info-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.game-description {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.game-description h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.game-description p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ============================================
   BONUS SECTION
   ============================================ */
.bonus-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 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-card-featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.casino-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.casino-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.bonus-offer {
    text-align: center;
    padding: var(--spacing-lg) 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: var(--spacing-md);
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.bonus-details {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.bonus-features {
    margin-bottom: var(--spacing-lg);
}

.bonus-features .feature {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ============================================
   GUIDE SECTION
   ============================================ */
.guide-steps {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
}

.guide-tips {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.guide-tips h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.tips-list {
    display: grid;
    gap: var(--spacing-md);
}

.tips-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.8;
}

.tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.tips-list strong {
    font-weight: 700;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.review-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--bg-light);
    border-radius: 50%;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.review-rating {
    font-size: 0.875rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.overall-rating {
    text-align: center;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

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

.rating-count {
    color: var(--text-light);
}

/* ============================================
   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);
}

.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;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.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;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

.footer-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

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

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

.responsible-gaming {
    display: grid;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.responsible-gaming a {
    transition: all var(--transition-fast);
}

.responsible-gaming a:hover {
    color: var(--primary-light);
}

.age-restriction {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: var(--spacing-sm);
}

.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;
}

.footer-disclaimer {
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-platforms {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .top-bar-links {
        justify-content: center;
    }

    .top-bar-bonus {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }

    .nav {
        position: fixed;
        top: 110px;
        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;
    }

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

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

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

    .step {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

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

/* ============================================
   V2 ENHANCEMENTS - MARKETING & UX
   ============================================ */

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-badge-icon {
    font-size: 2.5rem;
}

.trust-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

/* 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;
}

/* Content Blocks */
.content-block {
    margin: 3rem 0;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.0625rem;
}

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

/* Palier Block Enhanced */
.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, var(--accent-color), #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;
}

/* Testimonial Enhanced */
.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 Enhanced */
.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;
}

/* Info Table Enhanced */
.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;
}

/* Hero Enhanced */
.hero-intro {
    margin: 2rem 0;
}

.hero-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-rating {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}

.hero-rating .rating-stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-rating .rating-text {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Demo Section Enhanced */
.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 Enhanced */
.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 Enhanced */
.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);
}

/* Galaxsys Section Enhanced */
.galaxsys-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;
}

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

/* Avis Section Enhanced */
.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;
}

/* Responsible Section Enhanced */
.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 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.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);
}

.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 Enhanced */
.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.game-info-section .section-title {
    margin-bottom: 3rem;
}

/* ============================================
   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);
}

/* Add padding to body to prevent content being hidden by bottom bar */
body {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .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;
    }
}