/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #b91c1c;
    --primary-red-hover: #dc2626;
    --secondary-orange: #ea580c;
    --bg-dark: #0f0f0f;
    --bg-dark-secondary: #1c1c1c;
    --bg-dark-card: #262626;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --accent-yellow: #fbbf24;
    --border-dark: #374151;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-red: rgba(185, 28, 28, 0.3);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
    --gradient-red: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    --gradient-horror: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-horror: 'Creepster', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--shadow-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-horror);
    font-size: 1.8rem;
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--shadow-red);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: var(--primary-red);
    background: rgba(185, 28, 28, 0.1);
    border-left-color: var(--primary-red);
}

/* xMechanic Links */
.xmechanic-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-red);
}

.xmechanic-link:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.4);
}

/* Feature Explorer Section */
.feature-explorer {
    background: var(--bg-dark-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    margin-top: 4rem;
    text-align: center;
}

.feature-explorer h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-explorer p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.explorer-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explorer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.explorer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.explorer-card:hover::before {
    transform: scaleX(1);
}

.explorer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.explorer-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.explorer-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.explorer-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-red);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.explorer-card:hover .explorer-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Feature-specific card colors */
.xmental-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.2);
}

.fire-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.fire-card::before {
    background: #ff6b35;
}

.dead-card:hover {
    border-color: #8b0000;
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
}

.dead-card::before {
    background: #8b0000;
}

.xhole-card:hover {
    border-color: #8a2be2;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}

.xhole-card::before {
    background: #8a2be2;
}

.xgod-card:hover {
    border-color: gold;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.xgod-card::before {
    background: gold;
}

/* Live Winners Ticker under Header */
.live-winners-ticker {
    position: fixed;
    /* top is handled by JS */
    left: 0;
    right: 0;
    z-index: 900;
    height: 60px; /* Increased height */
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-dark);
}

.live-winners-ticker .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.live-sticker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    z-index: 902;
    flex-shrink: 0;
}

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

.live-text {
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pause-btn-mini {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 902;
    flex-shrink: 0;
}

.pause-btn-mini:hover {
    background: var(--primary-red);
}

.pause-btn-mini.paused {
    background: var(--primary-red);
}

.winners-stream {
    height: 40px; /* Increased height */
    overflow: hidden;
    position: relative;
    background: transparent;
    border-radius: 0;
    width: 100%;
    flex-grow: 1;
}

.winners-ticker {
    display: flex;
    align-items: center;
    animation: streamScroll 80s linear infinite;
    gap: 1.5rem; /* Increased gap */
    padding: 0;
    min-width: fit-content;
    height: 100%;
}

.winner-stream-item {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Increased gap */
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 1rem; /* Increased padding */
    border-radius: 8px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    min-width: 200px; /* Increased width */
    height: 40px; /* Increased height */
    opacity: 0.9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.winner-stream-item:hover {
    background: rgba(185, 28, 28, 0.3);
    border-color: var(--primary-red);
    transform: scale(1.05);
    opacity: 1;
}

.winner-stream-item.new-winner {
    background: rgba(185, 28, 28, 0.15);
    border-color: rgba(185, 28, 28, 0.3);
    animation: newWinnerGlow 2s ease-out;
}

.stream-flag {
    font-size: 1.2rem; /* Increased size */
}

.stream-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.stream-amount {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.9rem; /* Increased size */
}

.stream-multiplier {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.7rem; /* Increased size */
}

.stream-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem; /* Increased size */
    margin-left: auto; /* Push time to the right */
    padding-left: 0.8rem;
}

.loading-winners {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 0.2rem;
    font-style: italic;
    font-size: 0.6rem;
}

.error-message {
    color: var(--primary-red);
    text-align: center;
    padding: 0.2rem;
    font-style: italic;
    font-size: 0.6rem;
}

/* Animations */
@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.2); 
    }
}

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

@keyframes newWinnerGlow {
    0% { 
        box-shadow: 0 0 0 rgba(185, 28, 28, 0.3); 
    }
    50% { 
        box-shadow: 0 0 8px rgba(185, 28, 28, 0.3); 
    }
    100% { 
        box-shadow: 0 0 0 rgba(185, 28, 28, 0.3); 
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .live-winners-ticker {
        height: 50px;
    }
    
    .live-winners-ticker .container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .live-sticker {
        padding: 0.3rem 0.5rem;
    }
    
    .live-text {
        font-size: 0.6rem;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
    
    .pause-btn-mini {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .winners-stream {
        height: 35px;
    }
    
    .winners-ticker {
        gap: 1rem;
    }
    
    .winner-stream-item {
        min-width: 160px;
        height: 35px;
        gap: 0.5rem;
        padding: 0.2rem 0.6rem;
    }
    
    .stream-flag {
        font-size: 1rem;
    }

    .stream-amount {
        font-size: 0.8rem;
    }
    
    .stream-multiplier {
        font-size: 0.6rem;
    }
    
    .stream-time {
        font-size: 0.5rem;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 15px var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-red);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

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

.btn-primary:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.8)),
        url('../images/mental2_background2.webp') center center / cover no-repeat;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(185, 28, 28, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(185, 28, 28, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
        width: 100%;
    box-sizing: border-box;
    /* Temporary debug */
    
}

.hero-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 28, 28, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Enhanced text readability over background - moved above */

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 
        0 0 30px var(--shadow-red),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(185, 28, 28, 0.6);
    font-family: var(--font-horror);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(234, 88, 12, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--shadow-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Key Highlights Section */
.key-highlights {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-card {
    background: var(--bg-dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-red);
}

.highlight-card.main-highlight {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(185, 28, 28, 0.1) 100%);
}

.highlight-icon {
    font-size: 2rem;
    min-width: 40px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.main-highlight .highlight-number {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--shadow-red);
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats Section */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(38, 38, 38, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-dark-card);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.quick-stat:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.quick-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.quick-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Features Overview Section */
.features-overview {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.features-overview h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-highlight {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.feature-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge.new {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    animation: new-badge-glow 2s ease-in-out infinite;
}

.feature-badge.god {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    color: var(--accent-yellow);
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.8);
    animation: god-glow 2s ease-in-out infinite;
}

.feature-badge.fire {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    color: white;
    animation: fire-glow 2s ease-in-out infinite;
}

@keyframes new-badge-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.8); }
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}

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

/* hero-image styles moved above to avoid duplication */

.game-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-dark);
    border: 2px solid var(--border-dark);
    transition: transform 0.3s ease;
}

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

/* Game Showcase Video Styles */
.game-showcase {
    width: 100%;
    max-width: min(650px, 100%);
    position: relative;
        margin: 0 auto;
}

.game-video-container {
    position: relative;
    width: 100%;
    background: var(--bg-dark-card);
    border: 3px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(185, 28, 28, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    min-height: 300px;
}

.game-video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(185, 28, 28, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--primary-red);
}

.game-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--bg-dark) url('../images/mental2_background2.webp') center/cover no-repeat;
    border-radius: 17px;
    min-height: 300px;
}

.game-video::-webkit-media-controls {
    display: none !important;
}

.game-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(185, 28, 28, 0.15) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    border-radius: 17px;
}

.game-video-container:hover .video-overlay {
    opacity: 1;
}

.play-indicator {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-pulse {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: playPulse 2s infinite;
    opacity: 0.8;
}

.play-icon {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    margin-left: 6px;
    filter: drop-shadow(0 0 10px var(--primary-red));
}

/* Game UI Overlay */
.game-ui-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 3rem 1.5rem 1.5rem;
    color: white;
    backdrop-filter: blur(15px);
    border-radius: 0 0 17px 17px;
}

.game-title-overlay {
    margin-bottom: 1rem;
    text-align: center;
}

.game-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
    text-shadow: 
        0 0 20px var(--shadow-red),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: var(--font-horror);
}

.game-provider {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bet-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bet-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.rtp-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rtp-label {
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.volatility-badge {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(185, 28, 28, 0.4),
        0 0 20px rgba(185, 28, 28, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: volatilityGlow 3s ease-in-out infinite;
}

/* Animations */
@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes volatilityGlow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(185, 28, 28, 0.4),
            0 0 20px rgba(185, 28, 28, 0.3);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(185, 28, 28, 0.6),
            0 0 35px rgba(185, 28, 28, 0.5);
    }
}

/* Game Interface Styling */
.game-interface {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--primary-red);
    box-shadow: 0 20px 40px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.game-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(185, 28, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.game-reels {
    position: relative;
    z-index: 2;
}

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

.reel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    min-height: 200px;
    justify-content: center;
}

.reel-1, .reel-5 {
    height: 150px; /* 3 symbols */
}

.reel-2, .reel-4 {
    height: 100px; /* 2 symbols */
}

.reel-3 {
    height: 150px; /* 3 symbols */
}

.symbol {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-card);
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.symbol:hover {
    transform: scale(1.1);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--shadow-red);
}

.patient-symbol {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    color: white;
}

.wild-symbol {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    font-weight: 900;
}

.xways-symbol {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
    color: white;
    font-weight: 900;
}

.fire-frame {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    animation: fire-glow 2s ease-in-out infinite;
}

.dead-patient {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: #ef4444;
}

.xmental-symbol {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
    color: white;
    font-size: 1.2rem;
}

.xhole-symbol {
    background: radial-gradient(circle, #000000 0%, #1f2937 100%);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.scatter-symbol {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-weight: 900;
}

.xsplit-symbol {
    background: linear-gradient(135deg, #be185d 0%, #ec4899 100%);
    color: white;
}

.enhancer-cell {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: white;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.xgod-symbol {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    color: #fbbf24;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
    animation: god-glow 2s ease-in-out infinite;
}

@keyframes fire-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.6); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.9), 0 0 30px rgba(251, 146, 60, 0.6); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(14, 165, 233, 0.6); }
    50% { box-shadow: 0 0 16px rgba(14, 165, 233, 0.9); }
}

@keyframes god-glow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(251, 191, 36, 1), 0 0 35px rgba(185, 28, 28, 0.8);
        transform: scale(1.05);
    }
}

.game-ui {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
}

.bet-controls {
    color: var(--text-secondary);
    font-weight: 600;
}

.bet-label {
    background: var(--bg-dark-card);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
}

/* Game Info Section */
.game-info {
    background: var(--bg-dark-secondary);
}

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

.game-badge-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.release-badge {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #10b981;
    animation: new-release-glow 2s ease-in-out infinite;
}

@keyframes new-release-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.badge-text {
    font-weight: 900;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 0.5px;
}

.badge-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.rating-badge {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--accent-yellow);
}

.rating-stars {
    color: var(--accent-yellow);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.rating-text {
    font-weight: 900;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 0.5px;
}

.info-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.game-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.cta-box {
    background: var(--gradient-horror);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-red);
}

.cta-box h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.official-feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-dark);
    border: 2px solid var(--border-dark);
    transition: all 0.3s ease;
}

.official-feature-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-red);
    border-color: var(--primary-red);
}

/* Why Play Section */
.why-play {
    background: var(--bg-dark);
}

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

.reason-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-red);
    transition: left 0.5s ease;
}

.reason-card:hover::before {
    left: 0;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-red);
}

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

.reason-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.reason-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Game Features Detailed */
.game-features-detailed {
    background: var(--bg-dark-secondary);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-example {
    background: var(--bg-dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    margin-bottom: 2rem;
}

.feature-example h4 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-example p {
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Bonus Features */
.bonus-features {
    background: var(--bg-dark);
}

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

.bonus-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-red);
}

.main-bonus {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(185, 28, 28, 0.1) 100%);
}

.bonus-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bonus-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bonus-details li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bonus-details li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.bonus-potential {
    background: var(--gradient-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.bonus-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.bonus-feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bonus-feature-image:hover {
    transform: scale(1.05);
}

.bonus-cta {
    text-align: center;
    background: var(--bg-dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
}

.bonus-cta h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

/* Demo Mode */
.demo-mode {
    background: var(--bg-dark-secondary);
}

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

.demo-info h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.demo-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.demo-benefits {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
}

.benefit h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit p {
    color: var(--text-muted);
    margin: 0;
}

.demo-cta-box {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.demo-cta-box h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.demo-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.demo-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-dark);
}

/* Strategies */
.strategies {
    background: var(--bg-dark);
}

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

.strategy-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    position: relative;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-red);
}

.strategy-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.strategy-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.strategy-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.strategy-tip {
    background: rgba(185, 28, 28, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.strategy-tip strong {
    color: var(--accent-yellow);
}

.strategy-cta {
    text-align: center;
    margin-top: 3rem;
    background: var(--bg-dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
}

.strategy-cta h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

/* Mobile App */
.mobile-app {
    background: var(--bg-dark-secondary);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-info h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mobile-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mobile-features {
    margin-bottom: 2rem;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-icon {
    font-size: 2rem;
    min-width: 50px;
}

.mobile-feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mobile-feature p {
    color: var(--text-muted);
    margin: 0;
}

.download-options {
    margin-bottom: 2rem;
}

.download-options h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-buttons button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-cta {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.mobile-cta h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mobile-cta ul {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-cta li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mobile-cta li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.mobile-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-dark);
}

/* Final CTA */
.final-cta {
    background: var(--gradient-horror);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px var(--shadow-red);
}

.final-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.final-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.final-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

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

    /* Game Showcase Mobile Styles */
    .game-showcase {
        max-width: 100%;
        margin: 0 auto;
    }

    .game-video-container {
        border-width: 2px;
        border-radius: 15px;
    }

    .game-video {
        border-radius: 13px;
    }

    .game-ui-overlay {
        padding: 2rem 1rem 1rem;
        border-radius: 0 0 13px 13px;
    }

    .game-name {
        font-size: 1.5rem;
    }

    .game-provider {
        font-size: 0.8rem;
    }

    .bet-controls {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .rtp-info {
        justify-content: center;
        gap: 0.8rem;
    }

    .volatility-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .play-indicator {
        width: 60px;
        height: 60px;
    }

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

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

    .info-grid,
    .demo-content,
    .mobile-content,
    .feature-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .key-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }

    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .feature-desc {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonials-cta {
        padding: 2rem;
    }

    .testimonials-cta h3 {
        font-size: 1.5rem;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 2rem;
    }

    .faq-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .final-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .demo-buttons {
        flex-direction: column;
    }

    .download-buttons {
        flex-direction: column;
    }
}

/* Animation Classes */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-red); }
    50% { box-shadow: 0 0 30px var(--shadow-red), 0 0 40px var(--shadow-red); }
}

.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

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

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

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Nolimit Booster Section */
.nolimit-booster {
    background: var(--bg-dark);
}

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

.booster-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-red);
}

.booster-card.god-mode {
    border: 2px solid var(--accent-yellow);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(251, 191, 36, 0.1) 100%);
    animation: god-pulse 3s ease-in-out infinite;
}

@keyframes god-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 40px rgba(185, 28, 28, 0.4); }
}

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

.booster-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.booster-cost {
    background: var(--gradient-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.god-mode .booster-cost {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
    color: #1f2937;
}

.booster-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booster-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.booster-feature-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.booster-feature-image:hover {
    transform: scale(1.05);
}

.booster-warning {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-red);
}

.booster-warning h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.booster-warning p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

.booster-warning-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.death-feature-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.death-feature-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

/* xMechanics Section */
.xmechanics-section {
    background: var(--bg-dark-secondary);
}

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

.xmechanic-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    position: relative;
}

.xmechanic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-red);
}

.xmechanic-card.god-mechanic {
    border: 2px solid var(--accent-yellow);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.xmechanic-card.mental-mechanic {
    border: 2px solid #7c3aed;
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(124, 58, 237, 0.1) 100%);
}

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

.xmechanic-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.god-mechanic h3 {
    color: var(--accent-yellow);
}

.mental-mechanic h3 {
    color: #7c3aed;
}

.xmechanic-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.xmechanic-first {
    background: rgba(185, 28, 28, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    border: 1px solid var(--border-dark);
}

.god-mechanic .xmechanic-first {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--accent-yellow);
}

.mental-mechanic .xmechanic-first {
    background: rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
}

.xmechanic-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.xmechanic-feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.xmechanic-feature-image:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-dark-secondary);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-red);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(185, 28, 28, 0.1) 100%);
}

.testimonial-card.featured::before {
    background: var(--gradient-horror);
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-photo {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.author-tag {
    display: inline-block;
    background: var(--gradient-red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 15px;
    border: 1px solid var(--border-dark);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--shadow-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-cta {
    text-align: center;
    background: var(--bg-dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
}

.testimonials-cta h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--bg-dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px var(--shadow-red);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(185, 28, 28, 0.05);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--primary-red);
    font-weight: 700;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    text-align: center;
    background: var(--bg-dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
}

.faq-cta h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .booster-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .xmechanics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booster-card,
    .xmechanic-card {
        padding: 1.5rem;
    }

    .booster-warning {
        padding: 1.5rem;
    }

    .booster-warning h4 {
        font-size: 1.3rem;
    }

    .bonus-feature-image,
    .booster-feature-image {
        height: 120px;
    }

    .xmechanic-feature-image {
        height: 130px;
    }

    .official-feature-image {
        margin-bottom: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --bg-dark: #000000;
        --text-primary: #ffffff;
        --primary-red: #ff0000;
    }
}

/* --- New Styles for Internal Linking --- */

/* CTA Section on About & Strategy Pages */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.cta-content p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Related/Explore Features Section */
#explore-features {
    padding: 4rem 0;
}

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

#explore-features .explorer-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#explore-features .explorer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(185, 28, 28, 0.2);
}

#explore-features .explorer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

#explore-features .explorer-card-content {
    padding: 1.5rem;
}

#explore-features .explorer-card-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

#explore-features .explorer-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Featured Card Styles */
.featured-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-red), #c41e3a);
    color: white;
}

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

.featured-card .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.featured-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.feature-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-stats .stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .featured-card {
        grid-column: span 1;
    }
    
    .feature-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .feature-stats .stat-value {
        font-size: 1.4rem;
    }
}
