@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #080511;
    --bg-secondary: #120d25;
    --bg-card: rgba(23, 16, 44, 0.65);
    --bg-card-hover: rgba(35, 24, 66, 0.85);
    --bg-accent: #1e1438;
    
    --accent-gold: #ffb703;
    --accent-gold-dark: #fb8500;
    --accent-gold-gradient: linear-gradient(135deg, #ffe57f 0%, #ffb703 50%, #fb8500 100%);
    --accent-gold-glow: rgba(255, 183, 3, 0.35);
    
    --accent-purple: #9d4edd;
    --accent-purple-gradient: linear-gradient(135deg, #c77dff 0%, #9d4edd 50%, #5a189a 100%);
    --accent-purple-glow: rgba(157, 78, 221, 0.3);

    --accent-cyber: #00f5d4;
    --accent-cyber-gradient: linear-gradient(135deg, #00f5d4 0%, #00bbf9 100%);
    --accent-cyber-glow: rgba(0, 245, 212, 0.3);

    --accent-red: #f72585;
    --accent-green: #38b000;
    
    --text-primary: #ffffff;
    --text-secondary: #e0dcf2;
    --text-muted: #958cb5;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --border-radius-sm: 10px;
    --border-radius-md: 18px;
    --border-radius-lg: 28px;
    --border-radius-squircle: 22%;
    
    --border-glass: 1px solid rgba(157, 78, 221, 0.18);
    --border-glass-gold: 1px solid rgba(255, 183, 3, 0.25);
    
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(157, 78, 221, 0.15);
    --shadow-glow-gold: 0 0 25px rgba(255, 183, 3, 0.4);
    --shadow-glow-purple: 0 0 25px rgba(157, 78, 221, 0.4);
    --shadow-glass: 0 10px 40px 0 rgba(5, 2, 15, 0.6);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Core Performance Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(157, 78, 221, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(255, 183, 3, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

img, svg {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* Accessibility & Hidden Keyword SEO Crawler Layer */
.seo-hidden-layer {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Dynamic Announcement Alert Bar */
.announcement-bar {
    background: linear-gradient(90deg, #7b2cbf 0%, #ffb703 50%, #7b2cbf 100%);
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1001;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header & Glass Navigation */
header {
    background: rgba(12, 8, 25, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.logo-badge {
    background: var(--accent-gold-gradient);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 30%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 183, 3, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--accent-gold-gradient);
    transition: var(--transition-bounce);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

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

.nav-btn {
    background: var(--accent-gold-gradient);
    color: #0d0714;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-bounce);
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px var(--accent-gold-glow);
    color: #000;
}

/* Mobile Hamburger Menu Drawer Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(157, 78, 221, 0.15);
    border: var(--border-glass);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    transition: var(--transition-smooth);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: rgba(12, 8, 25, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: var(--border-glass);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
    }
}

/* Next-Gen Hero Section */
.hero {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* Rain of Gold Coins Particles Animation */
.coin-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #ffe57f 20%, #ffb703 60%, #fb8500 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.8), inset 0 0 4px #ffffff;
    opacity: 0.7;
    animation: coinFall 7s linear infinite;
}

.coin::before {
    content: '₹';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #572a00;
    height: 100%;
}

.coin.c1 { left: 10%; animation-duration: 6s; animation-delay: 0s; }
.coin.c2 { left: 25%; animation-duration: 8s; animation-delay: 1.5s; width: 30px; height: 30px; }
.coin.c3 { left: 45%; animation-duration: 5.5s; animation-delay: 3s; }
.coin.c4 { left: 65%; animation-duration: 7.5s; animation-delay: 0.8s; width: 28px; height: 28px; }
.coin.c5 { left: 80%; animation-duration: 6.5s; animation-delay: 2.2s; }
.coin.c6 { left: 92%; animation-duration: 8.5s; animation-delay: 4s; }

@keyframes coinFall {
    0% { transform: translateY(-30px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(600px) rotate(720deg); opacity: 0; }
}

.hero-content {
    z-index: 2;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 3, 0.12);
    border: var(--border-glass-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.15);
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.12;
    color: #ffffff;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #00f5d4 0%, #ffb703 50%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 6px;
}

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: #0a0512;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-glow-gold);
    transition: var(--transition-bounce);
    touch-action: manipulation;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--accent-gold-glow);
    color: #000;
}

.btn-secondary {
    background: rgba(23, 16, 44, 0.8);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    color: var(--text-primary);
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(35, 24, 66, 0.95);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, rgba(255, 183, 3, 0.25) 60%, transparent 80%);
    filter: blur(35px);
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius-md);
    border: var(--border-glass-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px rgba(255, 183, 3, 0.25);
    transition: var(--transition-bounce);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Scrolling Marquee Games Ribbon */
.games-marquee-container {
    background: rgba(18, 13, 37, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 14px 0;
    margin: 20px 0 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.6);
}

.games-marquee-track {
    display: block;
    width: 100%;
    vertical-align: middle;
}

.marquee-game-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(35, 24, 66, 0.85);
    border: 1px solid rgba(255, 183, 3, 0.3);
    border-radius: 40px;
    margin-right: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.marquee-game-item:hover {
    background: var(--accent-gold-gradient);
    color: #0d0714;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: var(--shadow-glow-gold);
}

.marquee-game-img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255, 183, 3, 0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

/* Dynamic Filter & Search Section */
.filter-section {
    max-width: 1240px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 25px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e0dcf2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.game-search-box-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 25px;
}

.game-search-input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background: rgba(23, 16, 44, 0.8);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.game-search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--accent-gold-glow);
    background: rgba(30, 20, 56, 0.95);
}

.search-icon-svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    pointer-events: none;
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-btn {
    background: rgba(23, 16, 44, 0.7);
    border: var(--border-glass);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.tag-btn:hover, .tag-btn.active {
    background: var(--accent-purple-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-2px);
}

/* Next-Gen Centered Game Cards Grid with Enlarged Game Icons */
.game-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.game-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-purple-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--bg-card-hover);
    border-color: rgba(255, 183, 3, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px var(--accent-purple-glow);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

/* Centered & Significantly Larger Game Icon (130px x 130px) */
.game-card-icon-container {
    width: 130px;
    height: 130px;
    border-radius: var(--border-radius-squircle);
    overflow: hidden;
    background: #18102e;
    border: 3px solid rgba(255, 183, 3, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 20px rgba(255, 183, 3, 0.25);
    margin: 0 auto;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.game-card:hover .game-card-icon-container {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px var(--accent-gold-glow);
    transform: scale(1.05);
}

.game-card-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-tag-mini {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-tag-mini.hot {
    background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 78, 80, 0.4);
}

.badge-tag-mini.highlight {
    background: var(--accent-cyber-gradient);
    color: #000;
    box-shadow: 0 2px 10px var(--accent-cyber-glow);
}

.card-bonus-badge-mini {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-gold-gradient);
    color: #0a0512;
    font-weight: 900;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--accent-gold-glow);
}

.game-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.game-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.game-category-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
}

.game-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin: 6px 0 16px;
    width: 100%;
}

.game-card-rating {
    color: #ffe57f;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-size {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-action-btn {
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
    transition: var(--transition-bounce);
}

.game-card-action-btn:hover {
    background: var(--accent-gold-gradient);
    color: #0d0714;
    box-shadow: var(--shadow-glow-gold);
}

/* FAQ Accordion Component */
.faq-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    background: rgba(12, 8, 25, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* Game Detail Page Setup & Hero Banner Adjustment */
.game-banner-container {
    position: relative;
    background: #0b0618;
    overflow: hidden;
    border-bottom: var(--border-glass);
    min-height: 320px;
}

.game-banner-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    z-index: 3;
}

.game-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    opacity: 0.65;
    z-index: 1;
}

.game-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 5, 17, 0.98) 0%, rgba(8, 5, 17, 0.85) 45%, rgba(8, 5, 17, 0.35) 100%);
    z-index: 2;
}

.game-banner-content {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.game-banner-logo {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    overflow: hidden;
    border: 3px solid rgba(255, 183, 3, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px var(--accent-gold-glow);
    background: #18102e;
    flex-shrink: 0;
}

.game-banner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-banner-text h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.game-banner-cat {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.game-banner-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.stat-badge-rating, .stat-badge-downloads, .stat-badge-count {
    background: rgba(23, 16, 44, 0.85);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
}

.stat-badge-rating { color: #ffe57f; border-color: rgba(255, 183, 3, 0.3); }

/* Details Layout Matrix */
.detail-container {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}

@media (max-width: 991px) {
    .detail-container {
        grid-template-columns: 1fr;
    }
}

.detail-glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-glass);
}

.detail-glass-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    padding-bottom: 10px;
}

.casual-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Specs Matrix */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    background: rgba(23, 16, 44, 0.8);
    border: var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.spec-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.spec-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.spec-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.spec-value {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 2px;
}

/* Download Sidebar Widget */
.sidebar-box {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-glass);
}

.download-widget h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.btn-primary-download {
    background: var(--accent-cyber-gradient);
    color: #061017;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-glow-cyber);
    margin: 20px 0 12px;
    transition: var(--transition-bounce);
    touch-action: manipulation;
}

.btn-primary-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px var(--accent-cyber-glow);
    color: #000;
}

.animate-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 245, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.safe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 700;
}

/* Related Games Sidebar */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
}

.related-card-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(23, 16, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.related-card-modern:hover {
    background: rgba(35, 24, 66, 0.9);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.related-card-img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info-modern h4 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
}

.related-meta-badge {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
}

/* Mobile Sticky Bottom Navigation Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(10, 6, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: var(--border-glass);
    z-index: 999;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    width: 25%;
    height: 100%;
    transition: var(--transition-smooth);
}

.bottom-bar-item.active, .bottom-bar-item:hover {
    color: var(--accent-gold);
}

.bottom-bar-item svg {
    width: 22px;
    height: 22px;
}

/* Regulatory Advisory Banner */
.regulatory-warning {
    max-width: 1240px;
    margin: 40px auto 20px;
    padding: 20px 25px;
    background: rgba(247, 37, 133, 0.08);
    border: 1px solid rgba(247, 37, 133, 0.3);
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.warning-icon {
    font-size: 28px;
    color: var(--accent-red);
    flex-shrink: 0;
}

/* Footer Section */
footer {
    background: rgba(8, 5, 17, 0.95);
    border-top: var(--border-glass);
    padding: 50px 20px 25px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14.5px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1240px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Contact & Static Page Styles */
.static-page-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(23, 16, 44, 0.9);
    border: var(--border-glass);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

.form-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.form-alert.success {
    background: rgba(56, 176, 0, 0.12);
    border: 1px solid var(--accent-green);
    color: #80ff44;
}
