* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #e8e8e8;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: #ffa726;
    letter-spacing: 1px;
}
.logo span { color: #2ecc71; }
nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
nav ul li a {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: #ccc;
    transition: 0.3s;
}
nav ul li a:hover, nav ul li a.active {
    background: #2a2a2a;
    color: #ffa726;
}
.auth-buttons { display: flex; gap: 10px; }
.btn-login, .btn-register {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}
.btn-login {
    background: #ffa726;
    color: #1a1a1a;
}
.btn-register {
    background: #2ecc71;
    color: #fff;
}
.btn-login:hover { background: #ff9800; }
.btn-register:hover { background: #27ae60; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 50px 20px;
    text-align: center;
}
.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 36px;
    color: #ffa726;
    margin-bottom: 15px;
    font-weight: 800;
}
.hero p {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-banner {
    margin: 30px auto;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.2);
}
.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: #ffa726;
    color: #1a1a1a;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 10px;
    transition: 0.3s;
}
.hero-cta:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 26px;
    color: #ffa726;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 35px;
    font-size: 14px;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}
.game-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: #ffa726;
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.15);
}
.game-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.game-card-body {
    padding: 12px;
    text-align: center;
}
.game-card-body h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}
.game-card-body p {
    font-size: 11px;
    color: #888;
}

/* Featured Casinos */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.casino-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
}
.casino-card:hover { border-color: #2ecc71; }
.casino-card img { width: 100%; height: auto; }
.casino-card-content {
    padding: 18px;
}
.casino-card-content h3 {
    color: #ffa726;
    font-size: 17px;
    margin-bottom: 8px;
}
.casino-card-content p {
    color: #aaa;
    font-size: 13px;
}

/* Stats */
.stats-section {
    background: #161616;
    border-radius: 12px;
    padding: 35px 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    text-align: center;
}
.stat-item {
    padding: 16px;
    background: #1f1f1f;
    border-radius: 8px;
    border-left: 3px solid #ffa726;
}
.stat-item h3 {
    color: #2ecc71;
    font-size: 22px;
    margin-bottom: 5px;
}
.stat-item p {
    color: #ccc;
    font-size: 13px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-card img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    flex-shrink: 0;
}
.feature-card-text h3 {
    color: #ffa726;
    font-size: 15px;
    margin-bottom: 6px;
}
.feature-card-text p {
    color: #aaa;
    font-size: 13px;
}

/* Article Section */
.article-block {
    background: #161616;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #2ecc71;
    margin-bottom: 20px;
}
.article-block h2 {
    color: #ffa726;
    margin-bottom: 14px;
    font-size: 22px;
}
.article-block h3 {
    color: #2ecc71;
    margin: 18px 0 10px;
    font-size: 17px;
}
.article-block p {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 14px;
}
.article-block ul {
    padding-left: 24px;
    color: #bbb;
    margin-bottom: 14px;
}
.article-block ul li { margin-bottom: 6px; font-size: 14px; }

/* FAQ */
.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 12px;
    border-left: 3px solid #ffa726;
}
.faq-item h4 {
    color: #ffa726;
    margin-bottom: 8px;
    font-size: 15px;
}
.faq-item p {
    color: #bbb;
    font-size: 14px;
}
.faq-item ul {
    padding-left: 22px;
    color: #bbb;
    font-size: 14px;
    margin-top: 6px;
}

/* User Review */
.user-review {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 22px;
    margin: 30px 0;
    border-left: 4px solid #2ecc71;
    font-style: italic;
    color: #ccc;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 20px 20px;
    border-top: 1px solid #2a2a2a;
    margin-top: 40px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    color: #ffa726;
    margin-bottom: 14px;
    font-size: 15px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #999;
}
.footer-col ul li a:hover { color: #ffa726; }
.footer-col p {
    color: #999;
    font-size: 13px;
    margin-bottom: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #2a2a2a;
    color: #777;
    font-size: 12px;
}
.footer-bottom .age-warning {
    color: #ffa726;
    font-weight: 700;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 26px; }
    nav ul { gap: 4px; }
    nav ul li a { padding: 6px 10px; font-size: 12px; }
    .logo { font-size: 22px; }
    .auth-buttons { margin-top: 10px; width: 100%; justify-content: center; }
    .btn-login, .btn-register { padding: 6px 14px; font-size: 12px; }
}