/* ==========================================================================
   GAME WORLD - Windows 11 Inspired Casino Theme
   ========================================================================== */

:root {
    /* Windows 11 Dark Mode & Casino Palette */
    --bg-base: #13131a; /* Deep dark background */
    --bg-acrylic: rgba(28, 28, 35, 0.65); /* Win11 Mica/Acrylic effect */
    --bg-acrylic-solid: #1c1c23;
    
    --border-acrylic: rgba(255, 255, 255, 0.08);
    --border-acrylic-hover: rgba(255, 255, 255, 0.15);
    
    /* Casino Accents */
    --accent-primary: #0078D4; /* Win11 Blue base */
    --accent-glow: #00b4d8;    /* Neon Cyan */
    --accent-gold: #ffb900;    /* Premium Gold */
    --accent-green: #107c10;   /* Success / Pros */
    --accent-red: #e81123;     /* Danger / Cons */

    /* Typography */
    --text-main: #f3f3f3;
    --text-muted: #a1a1aa;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;

    /* Geometry */
    --radius-sm: 6px;
    --radius-md: 12px; /* Win11 signature radius */
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Effects */
    --blur-strength: blur(24px);
    --shadow-win11: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   AMBIENT BACKGROUND (Win11 Bloom Effect)
   ========================================================================== */
.ambient-background {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-base);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.glow-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

.glow-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%); /* Purple mix */
}

/* ==========================================================================
   ACRYLIC COMPONENTS (Glassmorphism)
   ========================================================================== */
.acrylic-panel {
    background: var(--bg-acrylic);
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
    border: 1px solid var(--border-acrylic);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-win11);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.acrylic-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
    border-bottom: 1px solid transparent;
}

.acrylic-header.scrolled {
    background: var(--bg-acrylic);
    backdrop-filter: var(--blur-strength);
    -webkit-backdrop-filter: var(--blur-strength);
    border-bottom: 1px solid var(--border-acrylic);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 35px; width: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item { position: relative; }

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
}

.nav-item > a:hover, .nav-item.active > a {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown Win11 Style */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin-top: 10px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dropdown-item {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.2s ease;
}

.dropdown-item:hover, .dropdown-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding-left: 20px; /* Slight indent on hover */
}

.nav-actions { display: flex; gap: 12px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-acrylic);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-acrylic-hover);
}

.btn-gold {
    background: linear-gradient(135deg, #f5d100, #e6a800);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 185, 0, 0.3);
}

/* Mobile Toggle */
.mobile-menu-toggle { display: none; cursor: pointer; z-index: 1001; }
.mobile-menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-main); margin: 5px 0;
    transition: 0.3s;
}

/* ==========================================================================
   CONTENT BLOCKS (Hero, SEO, Tables)
   ========================================================================== */
.main-content {
    padding-top: 100px; /* Space for fixed header */
    min-height: 80vh;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 185, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 185, 0, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* SEO Content Area */
.seo-content {
    padding: 60px 0;
}

.seo-content h1, .seo-content h2, .seo-content h3 {
    color: var(--text-main);
    margin: 1.5em 0 0.8em;
    font-weight: 700;
}

.seo-content h2 { font-size: 2rem; }
.seo-content h3 { font-size: 1.5rem; }

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 1.2em;
    font-size: 1.05rem;
}

.seo-content ul {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.seo-content ul li {
    position: relative;
    margin-bottom: 10px;
    color: var(--text-muted);
    padding-left: 15px;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: -5px; top: 10px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
}

/* Pros & Cons Block */
.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.pros-box, .cons-box {
    padding: 30px;
}

.pros-box h3 { color: var(--accent-green); margin-top: 0; display: flex; align-items: center; gap: 10px; }
.cons-box h3 { color: var(--accent-red); margin-top: 0; display: flex; align-items: center; gap: 10px; }

.pros-box ul li::before {
    content: '✓'; background: none; color: var(--accent-green);
    left: -20px; top: 0; font-size: 1.2rem; font-weight: bold; width: auto; height: auto;
}

.cons-box ul li::before {
    content: '✕'; background: none; color: var(--accent-red);
    left: -20px; top: 0; font-size: 1.2rem; font-weight: bold; width: auto; height: auto;
}

/* Comparison Tables (Win11 Style) */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-acrylic);
    background: var(--bg-acrylic);
    backdrop-filter: var(--blur-strength);
}

table.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-acrylic);
}

table.comparison-table td {
    padding: 16px 20px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

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

table.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.casino-logo-cell img {
    border-radius: var(--radius-sm);
    max-width: 100px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    margin-top: 80px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { max-width: 180px; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.age-restriction {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted); font-size: 0.85rem;
}

.age-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    font-weight: bold; color: var(--text-main);
}

.footer-title {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links ul li a:hover { color: var(--accent-primary); padding-left: 5px; }

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

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile First focus mapped to media queries)
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-menu-toggle { display: block; }
    
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: var(--bg-acrylic-solid);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .main-nav.active { right: 0; }

    .nav-list { flex-direction: column; width: 100%; align-items: flex-start; gap: 10px;}
    .nav-item { width: 100%; }
    .nav-item > a { width: 100%; padding: 12px; font-size: 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03);}
    
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; display: none; background: transparent;
        box-shadow: none; border: none; padding-left: 20px;
    }
    
    .nav-item.has-dropdown.open .dropdown-menu { display: block; }

    .nav-actions { width: 100%; flex-direction: column; margin-top: 20px; }
    .nav-actions .btn { width: 100%; }

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

    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .pros-cons-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-section { padding: 40px 0; }
    .pros-box, .cons-box { padding: 20px; }
}

