:root {
    --bg-black: #000000;
    --surface-black: #080808;
    --accent-yellow: #f5b800;
    --btn-gradient: linear-gradient(180deg, #ffcc00 0%, #ff9d00 100%);
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --border-color: #1a1a1a;
    --positive-green: #4caf50;
    --negative-red: #f44336;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    overflow-x: hidden;
    width: 100%;
}
body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
img {
    max-width: 100%;
    height: auto;
}

/* --- HEADER --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
    background: #000;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
}
.header .logo img { height: 32px; }
.nav-menu { display: flex; gap: 20px; }
.nav-menu a { color: var(--text-white); text-decoration: none; font-size: 14px; font-weight: 500; }
.header-btns { display: flex; gap: 10px; }
.btn-login { background: #333; color: white; border: none; padding: 8px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.btn-join { background: var(--btn-gradient); color: #000; border: none; padding: 8px 20px; border-radius: 6px; font-weight: 700; cursor: pointer; }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}
.mobile-sidebar.active {
    display: block;
    pointer-events: all;
}
.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-sidebar.active .mobile-sidebar-overlay {
    opacity: 1;
}
.mobile-sidebar-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: #000;
    border-left: 1px solid var(--border-color);
    padding: 60px 30px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobile-sidebar.active .mobile-sidebar-content {
    right: 0;
}
.mobile-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: var(--accent-yellow);
}
.mobile-sidebar-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}
.mobile-sidebar-btns .btn-login,
.mobile-sidebar-btns .btn-join {
    width: 100%;
    padding: 12px 20px;
}

/* --- CONTAINER --- */
main { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 20px; 
    width: 100%;
    overflow-x: hidden;
}
main > div:first-of-type { font-size: 12px; color: #666; margin: 20px 0; }
main > h1:first-of-type { font-size: 64px; font-weight: 900; text-align: center; margin-bottom: 30px; letter-spacing: -2px; }

/* --- HERO --- */
.hero-box {
    background: url('banner.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 50px;
    border: 1px solid #222;
    margin-bottom: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.hero-box .badge { color: var(--accent-yellow); font-weight: 800; font-size: 18px; margin-bottom: 15px; }
.hero-box h2 { font-size: 68px; font-weight: 900; line-height: 1; margin-bottom: 15px; }
.hero-box .subtitle { font-size: 24px; font-weight: 500; margin-bottom: 30px; opacity: 0.9; }
.btn-cta {
    background: var(--btn-gradient);
    color: #000;
    border: none;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
}

/* --- SEO: INFO TABLE --- */
main table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid #222;
}
main table td {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    font-size: 14px;
    color: #ccc;
}
main table tr:last-child td { border-bottom: none; }
main table td:first-child {
    width: 35%;
    font-weight: 700;
    color: #fff;
    background: #161616;
}
main table p { margin: 0; }

/* --- SEO: PROS & CONS --- */
main > div.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
main > div.pros-cons-grid > div {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
}
main > div.pros-cons-grid > div h4 {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
main > div.pros-cons-grid > div:first-child h4 { color: var(--positive-green); }
main > div.pros-cons-grid > div:last-child h4 { color: var(--negative-red); }
main > div.pros-cons-grid > div ul { list-style: none; }
main > div.pros-cons-grid > div ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}
main > div.pros-cons-grid > div:first-child ul li::before { content: "✓"; color: var(--positive-green); position: absolute; left: 0; font-weight: bold; }
main > div.pros-cons-grid > div:last-child ul li::before { content: "✕"; color: var(--negative-red); position: absolute; left: 0; font-weight: bold; }

/* --- CONTENT --- */
main p { font-size: 16px; color: #ddd; margin-bottom: 20px; line-height: 1.6; }
main h1 { font-size: 36px; font-weight: 900; margin: 30px 0 20px; color: var(--text-white); }
main h2 { font-size: 28px; font-weight: 800; margin: 40px 0 20px; color: var(--text-white); }
main h2[style*="text-align: center"] { text-align: center; margin-bottom: 30px; font-weight: 900; font-size: 32px; }
main h3 { font-size: 22px; font-weight: 700; margin: 30px 0 15px; color: var(--text-white); }
main h4 { font-size: 18px; font-weight: 600; margin: 20px 0 10px; color: var(--text-white); }
main ul { margin: 20px 0; padding-left: 20px; }
main ul li { margin-bottom: 10px; color: #ddd; line-height: 1.6; }
main ol { margin: 20px 0; padding-left: 20px; }
main ol li { margin-bottom: 10px; color: #ddd; line-height: 1.6; }
main button {
    background: var(--btn-gradient);
    width: 100%;
    padding: 22px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 50px;
}

/* --- TOC --- */
main section {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 60px;
}
main section h3 { font-size: 24px; font-weight: 800; margin-bottom: 25px; }
main section ul li {
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
    color: #ccc;
    list-style: none;
    cursor: pointer;
}

/* --- GAMES --- */
main > div.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
}
main > div.game-grid > div {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}
main > div.game-grid > div img { 
    width: 100%; 
    height: 180px; 
    object-fit: contain; 
    object-position: center;
    background: #0a0a0a;
    padding: 10px;
}
main > div.game-grid > div > div {
    padding: 15px;
}
main > div.game-grid > div > div > div:first-child {
    font-weight: 700;
    font-size: 15px;
}
main > div.game-grid > div > div > div:last-child {
    font-size: 12px;
    color: #666;
}

/* --- SEO: FAQ SECTION --- */
main section.faq-section {
    margin-bottom: 60px;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
}
main section.faq-section h2 { font-size: 28px; margin-bottom: 25px; }
main section.faq-section > div {
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}
main section.faq-section > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
main section.faq-section > div > div:first-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}
main section.faq-section > div > div:last-child {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* --- SEO: AUTHOR BOX --- */
main > div.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #161616;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
    margin-bottom: 60px;
}
main > div.author-box > div:first-child {
    width: 60px; height: 60px;
    background: #333;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
}
main > div.author-box > div:last-child h4 { margin-bottom: 5px; font-size: 16px; color: #fff; }
main > div.author-box > div:last-child p { font-size: 13px; color: #999; margin: 0; }
main > div.author-box > div:last-child h4 span {
    display: inline-block; 
    background: rgba(245, 184, 0, 0.1); 
    color: var(--accent-yellow); 
    padding: 2px 8px; 
    border-radius: 4px; 
    font-size: 11px; 
    margin-left: 10px; 
    vertical-align: middle;
}

/* --- FOOTER --- */
.footer {
    background: #080808;
    padding: 80px 0 40px;
    border-top: 1px solid #111;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-logo img { height: 45px; }

.footer-socials { display: flex; gap: 15px; }
.social-circle {
    width: 38px; height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.social-circle svg { width: 18px; height: 18px; fill: #000; }

.footer-links-group {
    display: flex;
    gap: 100px;
}
.footer-col ul { list-style: none; }
.footer-col li {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-col li:hover { color: var(--accent-yellow); }

.footer-badges {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 60px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}
.badge-dmca img { height: 35px; }
.badge-text { font-weight: 900; font-size: 18px; color: #e5e5e5; text-transform: uppercase; }
.badge-gamcare { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.badge-gamcare span { font-size: 10px; line-height: 1; opacity: 0.7; }
.badge-gamble { font-weight: 900; }
.badge-gamble span.orange { color: #ff9d00; }
.badge-egba { display: flex; align-items: center; gap: 10px; font-size: 11px; opacity: 0.8; font-weight: 600; }
.badge-egba .line { width: 1px; height: 20px; background: #444; }

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
    font-size: 13px;
    opacity: 0.9;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 12px 20px;
        flex-wrap: nowrap;
    }
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    .nav-menu {
        display: none;
    }
    .header-btns {
        gap: 8px;
        order: 2;
        margin-left: auto;
    }
    .header-btns .btn-login,
    .header-btns .btn-join {
        padding: 6px 15px;
        font-size: 12px;
    }
    .mobile-sidebar {
        display: block;
    }
    
    /* Main Container */
    main {
        padding: 15px;
        max-width: 100%;
    }
    
    /* Typography */
    main > h1:first-of-type {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    main h1 {
        font-size: 28px;
    }
    main h2 {
        font-size: 24px;
        margin: 30px 0 15px;
    }
    main h2[style*="text-align: center"] {
        font-size: 26px;
    }
    main h3 {
        font-size: 20px;
        margin: 25px 0 12px;
    }
    main h4 {
        font-size: 16px;
    }
    main p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Hero Box */
    .hero-box {
        padding: 40px 20px;
        min-height: 300px;
        margin-bottom: 30px;
        border-radius: 15px;
        background-size: cover;
    }
    
    /* Tables */
    main table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    main table td {
        padding: 10px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    main table td:first-child {
        width: auto;
        min-width: 120px;
    }
    
    /* Pros & Cons Grid */
    main > div.pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Game Grid */
    main > div.game-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    main > div.game-grid > div img {
        height: 140px;
    }
    
    /* Sections */
    main section {
        padding: 20px;
        margin-bottom: 40px;
    }
    main section h3 {
        font-size: 20px;
    }
    
    /* Buttons */
    main button {
        padding: 18px;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Lists */
    main ul, main ol {
        padding-left: 15px;
        margin: 15px 0;
    }
    main ul li, main ol li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 30px;
    }
    .footer-container {
        padding: 0 20px;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-links-group {
        gap: 30px;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-badges {
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .footer-copyright {
        font-size: 11px;
        margin-top: 30px;
    }
    
    /* Author Box */
    main > div.author-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .header {
        padding: 10px 15px;
    }
    .header-btns .btn-join {
        padding: 6px 12px;
        font-size: 11px;
    }
    .mobile-sidebar-content {
        width: 100%;
        max-width: 100%;
    }
    
    main > h1:first-of-type {
        font-size: 28px;
    }
    main h1 {
        font-size: 24px;
    }
    main h2 {
        font-size: 20px;
    }
    main h2[style*="text-align: center"] {
        font-size: 22px;
    }
    main h3 {
        font-size: 18px;
    }
    
    .hero-box {
        padding: 30px 15px;
        min-height: 250px;
        border-radius: 12px;
    }
    
    main {
        padding: 10px;
    }
    
    .header {
        padding: 8px 10px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    main > div.game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    main table {
        font-size: 11px;
    }
    main table td {
        padding: 8px 10px;
        font-size: 11px;
    }
}
