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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a4e3a;
}

h1 {
    font-size: 3.5rem;
    font-family: 'Creepster', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 78, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo h1,
.nav-logo .logo-text {
    color: #ffd700;
    font-size: 1.8rem;
    font-family: 'Creepster', cursive;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateY(-2px);
}

.playnow-header {
    margin-left: 2rem;
    padding: 0.5rem 2rem;
    background: linear-gradient(90deg, #ffd700 0%, #ffb700 100%);
    color: #1a4e3a;
    font-weight: 800;
    font-size: 1.0rem;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.15);
    text-shadow: none;
    letter-spacing: 1px;
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
    cursor: pointer;
    animation: pulse 2s infinite;
    z-index: 1100;
}
.playnow-header:hover, .playnow-header:focus {
    background: linear-gradient(90deg, #ffb700 0%, #ffd700 100%);
    color: #0d2c1a;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }
    
    .nav-logo {
        order: 1;
        text-align: center;
    }
    
    .nav-menu {
        order: 2;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        margin: 0;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        z-index: auto;
    }
    
    .nav-menu li {
        margin: 0;
        list-style: none;
        display: block;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        white-space: nowrap;
        transition: all 0.3s ease;
        color: white !important;
        text-decoration: none !important;
        font-weight: 500;
        display: block;
        width: auto;
        min-width: auto;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.3);
        color: #ffd700 !important;
        transform: translateY(-1px);
    }
    
    .nav-menu a.active {
        background: rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
        color: #ffd700 !important;
    }
    
    .playnow-header {
        order: 3;
        margin: 0;
        width: 100%;
        font-size: 1.05rem;
        padding: 1rem 0;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.12);
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero {
        padding: 14rem 0 6rem;
        margin-top: 120px;
        background: white !important;
        color: #333 !important;
    }
    
    .hero-title {
        color: #1a4e3a !important;
        text-shadow: none !important;
        font-size: 3rem !important;
        text-align: center;
    }
    
    .hero-subtitle {
        color: #666 !important;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .stat {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        color: #333 !important;
    }
    
    .stat-number {
        color: #ff6b35 !important;
    }
    
    .stat-label {
        color: #666 !important;
    }
    
    /* Demo section mobile layout */
    .demo-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .demo-features {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile app section mobile layout */
    .app-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Game info section mobile layout */
    .game-details {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Features section mobile layout */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Casinos section mobile layout */
    .casino-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Reviews section mobile layout */
    .review-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Screenshots section mobile layout */
    .screenshot-gallery {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Hero section medium mobile layout */
    .hero .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        order: 1;
    }
    
    .hero {
        padding: 10rem 0 6rem;
        background: white !important;
        color: #333 !important;
    }
    
    /* Принудительное исправление цвета текста на средних экранах */
    .hero .hero-subtitle {
        color: #666 !important;
    }
    
    .hero .hero-title {
        color: #1a4e3a !important;
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .demo-features,
    .download-buttons,
    .hero-buttons,
    .urgent-buttons,
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .review-cards,
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons,
    .urgent-buttons,
    .final-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .stat {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        color: #333 !important;
    }
    
    .stat-number {
        color: #ff6b35 !important;
    }
    
    .stat-label {
        color: #666 !important;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 0.25rem;
        padding: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 6px;
        min-width: auto;
        text-align: center;
    }
    
    .playnow-header {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
    
    /* Hero section small mobile layout */
    .hero .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    
    .hero .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        order: 1;
    }
    
    /* Принудительное исправление цвета текста на очень маленьких экранах */
    .hero {
        background: white !important;
        color: #333 !important;
        padding: 8rem 0 4rem;
    }
    
    .hero .hero-subtitle {
        color: #666 !important;
        font-size: 1.1rem;
    }
    
    .hero .hero-title {
        color: #1a4e3a !important;
        font-size: 2.5rem !important;
    }
    
    .hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero .stat {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
    }
    
    .hero .stat-number {
        color: #ff6b35 !important;
    }
    
    .hero .stat-label {
        color: #666 !important;
    }
    
    /* Buttons small mobile layout */
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    /* Sections small mobile layout */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}

/* ===== LOADING & PERFORMANCE ===== */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

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

/* ===== DEMO PAGE STYLES ===== */
.demo-hero {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #3e6e4f 100%);
    padding: 12rem 0 8rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    text-align: center;
}

.demo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.demo-title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    font-weight: 400;
}

.demo-subtitle {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.demo-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.demo-features-quick {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.quick-feature {
    background: rgba(255,255,255,0.25);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.quick-feature:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.quick-feature span:last-child {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: none;
}

/* Game Demo Section */
.game-demo-section {
    padding: 5rem 0;
    background: white;
}

.game-demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.game-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.game-placeholder-large {
    position: relative;
    background: #f8f9fa;
    min-height: 400px;
}

.game-placeholder-large img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-placeholder-large:hover .demo-overlay {
    opacity: 1;
}

.demo-play-controls {
    text-align: center;
}

.demo-play-large {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.demo-play-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

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

.demo-note {
    color: white;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.demo-info-panel {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.demo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.demo-stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4e3a;
}

.demo-benefits ul {
    list-style: none;
    margin: 1.5rem 0;
}

.demo-benefits li {
    padding: 0.5rem 0;
    color: #555;
}

/* How to Play Guide */
.how-to-play {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.guide-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1a4e3a;
}

/* Demo Comparison Table */
.demo-comparison {
    background: white;
    padding: 5rem 0;
}

.comparison-table {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1a4e3a;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-col {
    padding: 1.5rem;
    text-align: center;
}

.demo-col {
    background: #2c5e3f;
}

.real-col {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 1.5rem;
    font-weight: 600;
    color: #1a4e3a;
    background: white;
}

.comparison-value {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.demo-value {
    background: #e3f2fd;
    color: #1976d2;
}

.real-value {
    background: #fff3e0;
    color: #f57c00;
}

.comparison-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-top: 3px solid #ff6b35;
}

.comparison-text {
    font-size: 1.2rem;
    color: #1a4e3a;
    margin-bottom: 1.5rem;
}

/* Demo Tips */
.demo-tips {
    background: #f8f9fa;
    padding: 5rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b35;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

/* Demo Final CTA */
.demo-final-cta {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-choice {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.cta-option h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 2rem;
}

/* ===== MOBILE APP PAGE STYLES ===== */
.mobile-hero {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #3e6e4f 100%);
    padding: 12rem 0 8rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    text-align: center;
}

.mobile-title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.mobile-subtitle {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 800;
}

.mobile-description {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.mobile-stat {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.mobile-stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.download-buttons-hero {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.android-btn {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
}

.ios-btn {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    color: white;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.download-platform {
    font-size: 1.1rem;
    font-weight: 700;
}

/* App Screenshots */
.app-screenshots {
    background: #f8f9fa;
    padding: 5rem 0;
}

.screenshots-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.screenshot-item h3 {
    color: #1a4e3a;
    margin-bottom: 0.5rem;
}

.screenshot-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Features */
.mobile-features {
    background: white;
    padding: 5rem 0;
}

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

.mobile-feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b35;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: white;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mobile-feature-card h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

/* Installation Guide */
.installation-guide {
    background: #f8f9fa;
    padding: 5rem 0;
}

.install-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #1a4e3a;
    color: white;
    border-color: #1a4e3a;
}

.tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

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

.install-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1a4e3a;
    margin-bottom: 0.5rem;
}

/* System Requirements */
.system-requirements {
    background: white;
    padding: 5rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-card h3 {
    color: #1a4e3a;
    margin-bottom: 1.5rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Mobile Bonuses */
.mobile-bonuses {
    background: #f8f9fa;
    padding: 5rem 0;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.bonus-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.bonus-card h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin: 1rem 0;
}

.bonus-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: #555;
}

.bonus-claim-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.bonus-claim-btn:hover {
    background: linear-gradient(45deg, #ff8f00, #ffb700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile FAQ */
.mobile-faq {
    background: white;
    padding: 5rem 0;
}

.faq-items {
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.faq-item h3 {
    background: #1a4e3a;
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: #2c5e3f;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Download CTA */
.download-cta {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.download-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.download-stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.download-stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.download-buttons-final {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.download-button-large {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.download-button-large.android {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.download-button-large.ios {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
}

.download-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.download-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 2rem;
}

/* Active navigation link */
.nav-menu a.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* ===== RESPONSIVE DESIGN ADDITIONS ===== */
@media (max-width: 768px) {
    .demo-title,
    .mobile-title {
        font-size: 2.5rem;
    }

    .demo-subtitle,
    .mobile-subtitle {
        font-size: 1.5rem;
    }

    .game-demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-choice {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-divider {
        order: 2;
    }

    .demo-features-quick,
    .mobile-stats,
    .download-buttons-hero,
    .download-stats {
        flex-direction: column;
        align-items: center;
    }

    .download-buttons-final {
        flex-direction: column;
        align-items: center;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-col,
    .comparison-feature,
    .comparison-value {
        text-align: left;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-hero {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #3e6e4f 100%);
    padding: 12rem 0 8rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    text-align: center;
}

.responsible-hero {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 30%, #b71c1c 70%, #d32f2f 100%);
}

.legal-title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.legal-subtitle {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-meta {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legal-date,
.legal-version {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.meta-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
}

/* Emergency Help Section */
.emergency-help {
    background: rgba(183, 28, 28, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.emergency-help h3 {
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.help-button.emergency {
    background: #ff5722;
    color: white;
}

.help-button.support {
    background: #2196f3;
    color: white;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
    background: white;
}

.legal-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1a4e3a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ff6b35;
    display: inline-block;
}

.legal-section h3 {
    color: #2c5e3f;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    color: #1a4e3a;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-list {
    list-style: none;
    margin: 1.5rem 0;
}

.legal-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.legal-list.prohibited li::before {
    content: '✗';
    color: #f44336;
}

/* Notice Boxes */
.important-notice,
.disclosure-box,
.age-verification-notice,
.disclaimer-box,
.privacy-notice,
.gdpr-notice,
.children-notice,
.jurisdiction-notice {
    background: #fff3e0;
    border-left: 5px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.disclosure-box {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.age-verification-notice {
    background: #ffebee;
    border-left-color: #f44336;
}

.privacy-notice {
    background: #f3e5f5;
    border-left-color: #9c27b0;
}

.gdpr-notice {
    background: #e8f5e8;
    border-left-color: #4caf50;
}

.children-notice {
    background: #fff8e1;
    border-left-color: #ffc107;
}

.disclaimer-box h4,
.important-notice h4,
.disclosure-box h4,
.age-verification-notice h4,
.privacy-notice h4,
.gdpr-notice h4,
.children-notice h4,
.jurisdiction-notice h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a4e3a;
}

/* Terms Navigation */
.terms-navigation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.terms-nav-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.terms-nav-list li {
    padding: 0;
}

.terms-nav-list a {
    color: #1a4e3a;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.terms-nav-list a:hover {
    background: #1a4e3a;
    color: white;
    transform: translateX(5px);
}

/* Contact Information */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 5px solid #ff6b35;
}

.contact-method.emergency-contact {
    border-top-color: #f44336;
    background: linear-gradient(135deg, #ffebee 0%, #fff 100%);
}

.legal-links {
    list-style: none;
    margin-top: 1rem;
}

.legal-links li {
    margin: 0.5rem 0;
}

.legal-links a {
    color: #1a4e3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b35;
}

/* Privacy Policy Specific Styles */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.contact-rights {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #2196f3;
}

/* Responsible Gaming Specific Styles */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #4caf50;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.principle-card h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

/* Warning Signs */
.warning-signs {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #ff9800;
}

.warning-list {
    list-style: none;
    margin: 1rem 0;
}

.warning-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Self Assessment */
.self-assessment {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #4caf50;
}

.assessment-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.assessment-list li {
    margin: 0.75rem 0;
    color: #555;
    line-height: 1.6;
}

.assessment-note {
    background: #ffebee;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f44336;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #d32f2f;
}

/* Tools and Strategies */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tool-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid #2196f3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tool-category h3 {
    color: #1a4e3a;
    margin-bottom: 1.5rem;
}

.tool-list {
    list-style: none;
    margin: 1rem 0;
}

.tool-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.tool-list li::before {
    content: '🛠️';
    position: absolute;
    left: 0;
}

/* Self-Exclusion */
.exclusion-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.exclusion-option {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

.exclusion-features {
    list-style: none;
    margin: 1rem 0;
}

.exclusion-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.exclusion-features li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

.exclusion-steps {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #2196f3;
}

.step-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.step-list li {
    margin: 1rem 0;
    color: #555;
    line-height: 1.6;
}

/* Support Organizations */
.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.support-org {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-org.uk {
    border-top: 5px solid #1976d2;
}

.support-org.international {
    border-top: 5px solid #4caf50;
}

.org-details {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #ff6b35;
}

.org-details h4 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

.org-details a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
}

.org-details a:hover {
    text-decoration: underline;
}

/* Treatment Options */
.treatment-list {
    list-style: none;
    margin: 2rem 0;
}

.treatment-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e9ecef;
}

.treatment-list li::before {
    content: '🏥';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.treatment-list li:last-child {
    border-bottom: none;
}

/* Family Support */
.family-support {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #4caf50;
}

.family-help-list,
.family-resources {
    list-style: none;
    margin: 1.5rem 0;
}

.family-help-list li,
.family-resources li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.family-help-list li::before {
    content: '👨‍👩‍👧‍👦';
    position: absolute;
    left: 0;
}

.family-resources li::before {
    content: '📚';
    position: absolute;
    left: 0;
}

/* Education Topics */
.education-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #9c27b0;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.topic-card h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

/* Recommended Reading */
.recommended-reading {
    background: #f3e5f5;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #9c27b0;
}

.book-list {
    list-style: none;
    margin: 1.5rem 0;
}

.book-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.book-list li::before {
    content: '📖';
    position: absolute;
    left: 0;
}

/* Our Commitments */
.our-commitments {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #2196f3;
}

.commitment-list,
.expectation-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li,
.expectation-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.commitment-list li::before {
    content: '🤝';
    position: absolute;
    left: 0;
}

.expectation-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* Help Resources */
.help-resources {
    list-style: none;
    margin: 1.5rem 0;
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.help-resources li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.help-resources li::before {
    content: '📞';
    position: absolute;
    left: 0;
}

/* Quick Links */
.quick-links {
    list-style: none;
    margin: 1rem 0;
}

.quick-links li {
    margin: 0.5rem 0;
}

.quick-links a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.5rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .principles-grid,
    .tools-grid,
    .education-topics {
        grid-template-columns: 1fr;
    }
    
    .support-organizations,
    .exclusion-types {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-nav-list {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .cta-banner,
    .cta-urgent,
    .final-cta,
    .demo-final-cta,
    .download-cta,
    .emergency-help,
    .footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .cta-button {
        border: 2px solid #000;
        color: #000;
        background: #fff;
    }
    
    .legal-hero {
        background: #fff;
        color: #000;
        padding: 2rem 0;
    }
    
    .legal-title {
        color: #000;
        text-shadow: none;
    }
}

/* Emergency demo page visibility fixes */
.demo-title {
    font-size: 4rem !important;
    color: #ffd700 !important;
    margin-bottom: 1rem;
    font-family: 'Creepster', 'Arial Black', cursive, sans-serif !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9) !important;
    font-weight: 900 !important;
}

.demo-subtitle {
    font-size: 2rem !important;
    color: #ff6b35 !important;
    margin-bottom: 1rem;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.demo-description {
    font-size: 1.3rem !important;
    color: white !important;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    line-height: 1.6;
    font-weight: 500 !important;
}

.quick-feature {
    background: rgba(255,255,255,0.95) !important;
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 3px solid #ffd700 !important;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    color: #1a4e3a !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.quick-feature span {
    color: #1a4e3a !important;
    font-weight: 800 !important;
}

.quick-feature:hover {
    transform: translateY(-5px);
    background: white !important;
    border-color: #ff6b35 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Emergency Demo Page Text Visibility Fixes */
.demo-title {
    font-size: 4rem !important;
    color: #ffd700 !important;
    font-family: 'Creepster', 'Arial Black', Impact, cursive, sans-serif !important;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.9) !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

.demo-subtitle {
    font-size: 2rem !important;
    color: #ff6b35 !important;
    font-weight: 900 !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}

.demo-description {
    font-size: 1.4rem !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
}

.quick-feature {
    background: rgba(255,255,255,0.95) !important;
    border: 3px solid #ffd700 !important;
    color: #1a4e3a !important;
    text-shadow: none !important;
    font-weight: 800 !important;
}

.quick-feature span {
    color: #1a4e3a !important;
    font-weight: 800 !important;
}

.feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.demo-hero {
    background: linear-gradient(135deg, #0f2419 0%, #1a4e3a 50%, #2c5e3f 100%) !important;
}

.demo-hero::before {
    background: rgba(0, 0, 0, 0.4) !important;
}

/* Horizontal scroll for features section */
.features-horizontal-scroll {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    margin-top: 3rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.features-horizontal-scroll .feature-card {
    min-width: 340px;
    max-width: 400px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-bottom: 0;
}

@media (max-width: 768px) {
  .features-horizontal-scroll .feature-card {
    min-width: 85vw;
    max-width: 95vw;
  }
}

/* Horizontal row for features section (no horizontal scroll) */
.features-row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.features-row .feature-card {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

@media (max-width: 900px) {
  .features-row .feature-card {
    max-width: 98vw;
  }
}

/* Feature card images */
.feature-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    display: block;
    object-fit: cover;
}

/* Game Comparison Section */
.game-comparison {
    background: #fff;
    padding: 5rem 0;
}

.game-comparison .comparison-table {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.game-comparison .comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1a4e3a;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.game-comparison .comparison-col {
    padding: 1.5rem;
    text-align: center;
}

.game-comparison .demo-col {
    background: #2c5e3f;
}

.game-comparison .real-col {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
}

.game-comparison .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.game-comparison .comparison-row:last-child {
    border-bottom: none;
}

.game-comparison .comparison-feature {
    padding: 1.5rem;
    font-weight: 600;
    color: #1a4e3a;
    background: white;
}

.game-comparison .comparison-value {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.game-comparison .demo-value {
    background: #e3f2fd;
    color: #1976d2;
}

.game-comparison .real-value {
    background: #fff3e0;
    color: #f57c00;
}

.game-comparison .comparison-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-top: 3px solid #ff6b35;
}

.game-comparison .comparison-text {
    font-size: 1.2rem;
    color: #1a4e3a;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .game-comparison .comparison-header,
    .game-comparison .comparison-row {
        grid-template-columns: 1fr;
    }
    .game-comparison .comparison-col,
    .game-comparison .comparison-feature,
    .game-comparison .comparison-value {
        text-align: left;
    }
}

.privacy-policy-main {
    color: #222 !important;
    background: rgba(255,255,255,0.97) !important;
    text-shadow: none !important;
    padding: 2rem 0;
    min-height: 60vh;
}

.privacy-policy-main h1, .privacy-policy-main h2, .privacy-policy-main h3 {
    color: #bfa43a !important;
    text-shadow: 1px 1px 4px #000, 0 0 2px #fff;
}

.privacy-policy-main p, .privacy-policy-main .privacy-policy-description, .privacy-policy-main .privacy-policy-meta {
    color: #222 !important;
    background: rgba(255,255,255,0.85);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 400;
    text-shadow: none !important;
}

.privacy-notice {
    background: #fffbe7 !important;
    color: #222 !important;
    border-left-color: #bfa43a !important;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}

.privacy-notice h4 {
    color: #bfa43a !important;
    text-shadow: 1px 1px 4px #000, 0 0 2px #fff;
}

.legal-title, .legal-subtitle, .legal-description, .legal-meta, .legal-content, .privacy-content, .legal-section, .legal-section p, .legal-section h2, .legal-section h3, .legal-section h4, .legal-section ul, .legal-section li {
    color: #222 !important;
    background: transparent !important;
    text-shadow: none !important;
}

.legal-hero, .legal-content {
    background: #f8f9fa !important;
}

.legal-title {
    color: #bfa43a !important;
    text-shadow: 1px 1px 4px #000, 0 0 2px #fff;
}

.privacy-notice, .gdpr-notice, .children-notice, .security-notice, .contact-rights {
    background: #fffbe7 !important;
    color: #222 !important;
    border-left-color: #bfa43a !important;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}

.privacy-notice h4, .gdpr-notice h4, .children-notice h4, .security-notice h4 {
    color: #bfa43a !important;
    text-shadow: 1px 1px 4px #000, 0 0 2px #fff;
}

.legal-content, .legal-content *, .privacy-content, .privacy-content * {
    color: #222 !important;
    background: transparent !important;
    text-shadow: none !important;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #3e6e4f 100%);
    padding: 12rem 0 8rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    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 100 100"><circle cx="25" cy="25" r="2" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="1" fill="%23ffd700" opacity="0.4"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, #ff8f00, #ffb700);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.cta-button.secondary:hover {
    background: #ff6b35;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.cta-button.gold {
    background: linear-gradient(45deg, #ffd700, #ffb700);
    color: #1a4e3a;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: glow 2s infinite;
}

.cta-button.gold:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px) scale(1.05);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    padding: 3rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '🎰';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-15deg);
}

.cta-banner::after {
    content: '🍌';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(15deg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    background: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.demo-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.demo-feature {
    text-align: center;
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.demo-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.demo-feature strong {
    display: block;
    color: #2c5e3f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.demo-game-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.game-placeholder {
    position: relative;
}

.game-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-placeholder:hover .play-overlay {
    opacity: 1;
}

.game-placeholder:hover img {
    transform: scale(1.1);
}

.demo-play-btn {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.demo-play-btn:hover {
    background: #ff8f00;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ===== MOBILE APP SECTION ===== */
.mobile-app {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.app-features ul {
    list-style: none;
    margin: 2rem 0;
}

.app-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.app-features li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a4e3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(26, 78, 58, 0.2);
}

.app-button:hover {
    background: #2c5e3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 78, 58, 0.3);
}

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

.app-text small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.app-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-preview {
    position: relative;
}

.app-preview img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.app-preview img:hover {
    transform: scale(1.05);
}

/* ===== GAME INFO SECTION ===== */
.game-info {
    background: white;
}

.game-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.specs-list {
    list-style: none;
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.specs-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: #1a4e3a;
    min-width: 120px;
    display: inline-block;
}

.game-image {
    position: relative;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.game-image img:hover {
    transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features {
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.feature-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a4e3a;
}

.feature-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-cta {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-cta:hover {
    background: linear-gradient(45deg, #ff8f00, #ffb700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ===== CASINOS SECTION ===== */
.casinos {
    background: white;
}

.casinos-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.casino-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    transform: scale(1.02);
}

.casino-card.featured::before {
    content: '⭐ FEATURED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #1a4e3a;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.casino-logo img {
    height: 40px;
    width: auto;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    display: block;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.casino-bonus {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.casino-bonus h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4e3a;
    margin-bottom: 0.5rem;
}

.bonus-terms {
    font-size: 0.95rem;
    color: #666;
}

.casino-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.casino-button {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #1a4e3a, #2c5e3f);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.casino-button:hover {
    background: linear-gradient(45deg, #2c5e3f, #3e6e4f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 78, 58, 0.3);
}

/* ===== CTA URGENT SECTION ===== */
.cta-urgent {
    background: linear-gradient(45deg, #1a4e3a, #2c5e3f);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-urgent::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

.urgent-content {
    position: relative;
    z-index: 2;
}

.urgent-content h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgent-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.urgent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.urgent-disclaimer {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    background: #f8f9fa;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

.screenshot-item h3 {
    padding: 1rem;
    text-align: center;
    margin: 0;
    color: #1a4e3a;
}

.screenshot-cta {
    display: block;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-cta:hover {
    background: #ff8f00;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: white;
}

.review-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.overall-rating {
    display: inline-block;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    display: block;
}

.rating-stars {
    font-size: 2rem;
    color: #ffd700;
    margin: 0.5rem 0;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b35;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1a4e3a;
    font-size: 1.1rem;
    display: block;
}

.reviewer-title {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.reviews-cta h3 {
    color: #1a4e3a;
    margin-bottom: 1rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: linear-gradient(135deg, #1a4e3a 0%, #2c5e3f 50%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    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 100 100"><circle cx="20" cy="20" r="3" fill="%23ffd700" opacity="0.3"/><circle cx="80" cy="80" r="2" fill="%23ffd700" opacity="0.2"/><circle cx="60" cy="30" r="1.5" fill="%23ffd700" opacity="0.4"/><circle cx="30" cy="70" r="2.5" fill="%23ffd700" opacity="0.25"/></svg>');
    animation: float 25s infinite linear;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: #ffd700;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.cta-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.15);
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.final-disclaimer {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a4e3a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-cta {
    margin-top: 1rem;
}

.footer-button {
    background: linear-gradient(45deg, #ff6b35, #ff8f00);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-button:hover {
    background: linear-gradient(45deg, #ff8f00, #ffb700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== FORCE NAVIGATION VISIBILITY ===== */
/* Принудительное отображение навигации на всех устройствах */
.nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu li {
    display: block !important;
}

.nav-menu a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Дополнительные стили для мобильных устройств */
@media (max-width: 968px) {
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        z-index: auto !important;
    }
    
    /* Принудительное исправление цвета текста на мобильных */
    .hero {
        background: white !important;
        color: #333 !important;
    }
    
    .hero .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        order: 1;
    }
    
    .hero .hero-subtitle {
        color: #666 !important;
    }
    
    .hero .hero-title {
        color: #1a4e3a !important;
    }
    
    .hero .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .hero .stat {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        color: #333 !important;
    }
    
    .hero .stat-number {
        color: #ff6b35 !important;
    }
    
    .hero .stat-label {
        color: #666 !important;
    }
    
    .hero .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== PRO MAX SCREENS FIX ===== */
@media (min-width: 428px) and (max-width: 968px) {
    .hero .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        order: 1;
    }
    
    .hero {
        background: white !important;
        color: #333 !important;
    }
    
    .hero .hero-title {
        color: #1a4e3a !important;
        text-shadow: none !important;
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .hero .hero-subtitle {
        color: #666 !important;
        text-align: center;
    }
    
    .hero .hero-stats {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .hero .stat {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        color: #333 !important;
    }
    
    .hero .stat-number {
        color: #ff6b35 !important;
    }
    
    .hero .stat-label {
        color: #666 !important;
    }
    
    .hero .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== LARGE PRO MAX SCREENS FIX ===== */
@media (min-width: 428px) and (max-width: 480px) {
    .hero .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    
    .hero .hero-image {
        order: -1 !important;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        order: 1;
    }
    
    .hero {
        background: white !important;
        color: #333 !important;
        padding: 8rem 0 4rem;
    }
    
    .hero .hero-title {
        color: #1a4e3a !important;
        font-size: 2.5rem !important;
    }
    
    .hero .hero-subtitle {
        color: #666 !important;
        font-size: 1.1rem;
    }
    
    .hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero .stat {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
    }
    
    .hero .stat-number {
        color: #ff6b35 !important;
    }
    
    .hero .stat-label {
        color: #666 !important;
    }
    
    .hero .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
}


