* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #0a3d8f;
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
}
a { color: #ffd700; text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-header {
    background: linear-gradient(180deg, #0a3d8f 0%, #082e6b 100%);
    border-bottom: 2px solid #ffd700;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo::before {
    content: "🎰";
    font-size: 26px;
}
.auth-buttons {
    display: flex;
    gap: 10px;
}
.btn {
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
}
.btn-signup {
    background: #ff6b00;
    color: #fff;
}
.btn-signup:hover { background: #e65c00; color: #fff; }
.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
}
.btn-login:hover { background: #ffd700; color: #0a3d8f; }

/* Navigation */
.main-nav {
    background: #082e6b;
    border-bottom: 1px solid rgba(255,215,0,0.3);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.nav-list li a {
    display: block;
    padding: 14px 22px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.nav-list li a:hover,
.nav-list li a.active {
    background: #ffd700;
    color: #0a3d8f;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a3d8f 0%, #1a5dbf 50%, #0a3d8f 100%);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-size: 42px;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
}
.hero-text .tagline {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    text-align: left;
}
.hero-text .cta-btn {
    background: #ff6b00;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}
.hero-text .cta-btn:hover { background: #e65c00; color: #fff; }
.hero-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

/* Section common */
.section {
    background: #fff;
    color: #333;
    padding: 35px 25px;
    margin: 25px auto;
    max-width: 1200px;
    border-radius: 6px;
    border: 1px solid rgba(255,215,0,0.4);
}
.section h2 {
    color: #0a3d8f;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 25px;
    border-bottom: 2px solid #0a3d8f;
    letter-spacing: 1px;
}
.section h3 {
    color: #0a3d8f;
    font-size: 19px;
    margin: 20px 0 12px;
}
.section h4 {
    color: #0a3d8f;
    font-size: 16px;
    margin: 15px 0 8px;
}
.section p {
    margin-bottom: 14px;
    color: #444;
    font-size: 15px;
}
.section ul { margin: 12px 0 16px 22px; color: #444; }
.section ul li { margin-bottom: 7px; }

/* Intro split */
.intro-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: start;
}
.intro-split img {
    width: 100%;
    max-width: 225px;
    border-radius: 6px;
    margin: 0 auto;
}

/* Stats grid */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 25px 0;
}
.stat-box {
    background: linear-gradient(135deg, #0a3d8f, #1a5dbf);
    color: #fff;
    padding: 22px 15px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #ffd700;
}
.stat-box .number {
    font-size: 26px;
    font-weight: 900;
    color: #ffd700;
    display: block;
    margin-bottom: 6px;
}
.stat-box .label {
    font-size: 13px;
    text-transform: uppercase;
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 20px 0;
}
.game-card {
    background: #f7f9fc;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(10,61,143,0.18);
}
.game-card img {
    width: 100%;
    max-width: 170px;
    height: auto;
    margin: 0 auto 10px;
    border-radius: 4px;
}
.game-card h4 {
    color: #0a3d8f;
    font-size: 14px;
    margin: 8px 0 4px;
}
.game-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Features 2-col */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin: 25px 0;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
}

/* Highlight box */
.highlight-box {
    background: #fffbe6;
    border-left: 4px solid #ffd700;
    padding: 16px 20px;
    margin: 18px 0;
    color: #333;
    border-radius: 0 4px 4px 0;
}

/* Comparison table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.compare-table th,
.compare-table td {
    border: 1px solid #d6dee8;
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
}
.compare-table th {
    background: #0a3d8f;
    color: #ffd700;
    text-transform: uppercase;
    font-size: 13px;
}
.compare-table tr:nth-child(even) td { background: #f7f9fc; }

/* FAQ */
.faq-item {
    background: #f7f9fc;
    border-left: 4px solid #0a3d8f;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 0 4px 4px 0;
}
.faq-item h4 {
    color: #0a3d8f;
    font-size: 16px;
    margin-bottom: 6px;
}
.faq-item p {
    margin: 0;
    color: #444;
}
.faq-item ul { margin: 6px 0 0 20px; }

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, #0a3d8f, #082e6b);
    color: #fff;
    padding: 22px 25px;
    border-radius: 6px;
    margin: 22px 0;
    border-left: 5px solid #ffd700;
    font-style: italic;
}
.testimonial strong {
    color: #ffd700;
    font-style: normal;
}

/* Banner image showcase */
.banner-showcase {
    text-align: center;
    margin: 25px 0;
}
.banner-showcase img {
    max-width: 612px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
}

/* Footer */
footer {
    background: #051d4a;
    color: #d1d9e6;
    padding: 40px 20px 18px;
    margin-top: 35px;
    border-top: 3px solid #ffd700;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h3 {
    color: #ffd700;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,215,0,0.3);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    padding: 5px 0;
    font-size: 13px;
}
.footer-col ul li a {
    color: #d1d9e6;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: #ffd700; }
.footer-col p { font-size: 13px; margin: 6px 0; color: #d1d9e6; }
.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,215,0,0.2);
    text-align: center;
    font-size: 12px;
    color: #99a5b8;
}
.footer-bottom .responsible {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-text h1, .hero-text .tagline { text-align: center; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row, .intro-split { grid-template-columns: 1fr; }
    .feature-row.reverse { direction: ltr; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hero-text h1 { font-size: 28px; }
    .hero-text .tagline { font-size: 16px; }
    .section { padding: 22px 16px; margin: 15px 10px; }
    .section h2 { font-size: 19px; }
    .nav-list li a { padding: 11px 14px; font-size: 12px; }
    .logo { font-size: 22px; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-box .number { font-size: 21px; }
    .footer-container { grid-template-columns: 1fr; }
    .auth-buttons .btn { padding: 7px 14px; font-size: 12px; }
}