* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #0d1f17;
    color: #e6e6e6;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Top promo bar */
.top-bar {
    background: linear-gradient(90deg, #c79b2e, #e6b94a, #c79b2e);
    color: #1a1a1a;
    font-size: 13px;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
}
.top-bar .marquee {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    font-weight: 600;
}
@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header / Navigation */
.header {
    background: #0a1a13;
    border-bottom: 2px solid #1a3a2a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: wrap;
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: #f4c430;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f4c430, #c79b2e);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(244, 196, 48, 0.5);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
}
.nav-menu li a {
    padding: 8px 16px;
    color: #cfcfcf;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}
.nav-menu li a:hover, .nav-menu li a.active {
    color: #f4c430;
    background: rgba(244, 196, 48, 0.1);
}
.auth-buttons {
    display: flex;
    gap: 10px;
}
.btn-login, .btn-register {
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-login {
    background: #16a34a;
    color: #fff;
}
.btn-login:hover { background: #15803d; }
.btn-register {
    background: transparent;
    color: #fff;
    border: 2px solid #16a34a;
}
.btn-register:hover { background: rgba(22, 163, 74, 0.2); }

/* Hero Banner */
.hero {
    position: relative;
    background: #0a1a13;
    padding: 30px 20px;
    text-align: center;
}
.hero-banner {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-banner img {
    width: 100%;
    height: auto;
}
.hero-cta {
    margin-top: 20px;
}
.hero-cta a {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.hero-cta a:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* Intro section */
.intro {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}
.intro h1 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.intro p {
    color: #bcbcbc;
    font-size: 16px;
    margin-bottom: 25px;
}
.intro-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.intro-buttons a {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.intro-buttons .primary { background: #16a34a; color: #fff; }
.intro-buttons .secondary { background: transparent; color: #fff; border: 2px solid #fff; }

/* Section common */
.section {
    padding: 50px 20px;
}
.section-dark {
    background: #102a1f;
}
.section-title {
    text-align: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 700;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #0a1a13;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 16px 20px;
    border-left: 3px solid #16a34a;
}
.faq-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item h4::after {
    content: "+";
    color: #16a34a;
    font-size: 22px;
    font-weight: 400;
}
.faq-item p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 6px 0;
}
.faq-item ul {
    margin: 8px 0 8px 20px;
    color: #b0b0b0;
    font-size: 14px;
}

/* Brand intro cards */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.brand-card {
    background: #0a1a13;
    border: 1px solid #1f3a2b;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: #16a34a;
}
.brand-card-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102a1f;
    overflow: hidden;
}
.brand-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-card-body {
    padding: 18px;
}
.brand-card-body h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}
.brand-card-body p {
    color: #a8a8a8;
    font-size: 14px;
}

/* News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.news-card {
    background: #0a1a13;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1f3a2b;
}
.news-card-img {
    height: 160px;
    overflow: hidden;
    background: #102a1f;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.news-card-body {
    padding: 16px;
}
.news-card-body h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.news-card-body p {
    color: #a0a0a0;
    font-size: 13px;
    margin-bottom: 12px;
}
.news-meta {
    font-size: 12px;
    color: #16a34a;
    padding-top: 10px;
    border-top: 1px solid #1f3a2b;
}
.news-meta span { margin-right: 10px; }
.see-more {
    text-align: center;
    margin-top: 30px;
}
.see-more a {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

/* Featured games gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.gallery-item {
    background: #0a1a13;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #1f3a2b;
    text-align: center;
    padding: 10px;
}
.gallery-item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 8px;
}
.gallery-item span {
    font-size: 13px;
    color: #ddd;
}

/* Stats panel */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item {
    background: #0a1a13;
    padding: 25px 15px;
    border-radius: 8px;
    border-top: 3px solid #f4c430;
}
.stat-item .num {
    font-size: 28px;
    color: #f4c430;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat-item .label {
    color: #c0c0c0;
    font-size: 14px;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, #16a34a, #15803d);
    padding: 50px 20px;
    text-align: center;
}
.cta-banner h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 14px;
}
.cta-banner p {
    color: #e6f9ec;
    margin-bottom: 22px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner a {
    display: inline-block;
    background: #fff;
    color: #15803d;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

/* Testimonial */
.testimonial {
    background: #102a1f;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #f4c430;
}
.testimonial p {
    font-style: italic;
    color: #d8d8d8;
    font-size: 15px;
}
.testimonial .author {
    margin-top: 14px;
    color: #f4c430;
    font-weight: 600;
    font-size: 13px;
}

/* Footer */
.footer {
    background: #061309;
    padding: 50px 20px 20px;
    color: #a8a8a8;
    font-size: 13px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 30px;
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a:hover { color: #16a34a; }
.footer-col p { margin-bottom: 8px; }
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.payment-icons span {
    background: #1a1a1a;
    color: #ddd;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
}
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1f3a2b;
    text-align: center;
    font-size: 12px;
    color: #707070;
}
.footer-bottom .age {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 10px; }
    .nav-menu { justify-content: center; }
    .intro h1 { font-size: 24px; }
    .section-title { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .auth-buttons { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .nav-menu li a { padding: 6px 10px; font-size: 13px; }
}
.logo::before img{width:100%;height:100%;object-fit:cover;object-position:center}