body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f8fa;
    color: #222;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.logo img {
    height: 48px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover, .register-btn, .cta-btn {
    color: #fff;
    background: #1e90ff;
    border-radius: 4px;
    padding: 8px 18px;
    transition: background 0.2s;
}
.register-btn, .login-btn {
    background: #1e90ff;
    color: #fff;
    border-radius: 4px;
    padding: 8px 18px;
    margin-left: 8px;
}
.hero {
    position: relative;
    text-align: center;
    background: #0b1e3f;
    color: #fff;
    padding-bottom: 32px;
}
.hero-banner {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-bottom: 4px solid #1e90ff;
}
.hero-content {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 600px;
    background: rgba(11,30,63,0.85);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-btn {
    display: inline-block;
    margin-top: 18px;
    background: #1e90ff;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30,144,255,0.12);
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #0b1e3f;
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
}
section {
    margin-bottom: 48px;
}
.games-section .games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.game {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 16px 12px 8px 12px;
    text-align: center;
    width: 140px;
    transition: box-shadow 0.2s;
}
.game img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}
.game span {
    display: block;
    font-weight: 500;
    color: #1e90ff;
}
.game:hover {
    box-shadow: 0 4px 16px rgba(30,144,255,0.12);
}
.about-section .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.about-section .features-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    padding-left: 18px;
    position: relative;
}
.about-section .features-list li:before {
    content: '✔';
    color: #1e90ff;
    position: absolute;
    left: 0;
}
.providers {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px;
}
.providers img {
    height: 32px;
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.bonuses-section .bonuses-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.bonuses-section .bonuses-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}
.payments-section .payments-list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
.payments-section .payments-list img {
    height: 36px;
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.payments-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.payments-info li {
    margin-bottom: 8px;
}
.mobile-section .mobile-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.mobile-section img {
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30,144,255,0.08);
}
.mobile-section ul {
    list-style: disc inside;
    font-size: 1.1em;
}
.reviews-section .review {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 18px 24px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.reviews-section .review img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews-section blockquote {
    margin: 0;
    font-style: italic;
    color: #1e90ff;
}
.reviews-section span {
    color: #888;
    font-size: 0.95em;
}
.faq-section .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 16px 24px;
    margin-bottom: 14px;
}
.faq-section h3 {
    margin-top: 0;
    color: #1e90ff;
}
footer {
    background: #0b1e3f;
    color: #fff;
    padding: 32px 0 0 0;
    margin-top: 48px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 24px 24px;
}
.footer-logo img {
    height: 48px;
}
.footer-info {
    flex: 1 1 300px;
    text-align: center;
    font-size: 1em;
}
.footer-payments {
    display: flex;
    gap: 14px;
    align-items: center;
}
.footer-payments img {
    height: 32px;
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
    .header-container, .footer-container, main {
        max-width: 98vw;
        padding-left: 8px;
        padding-right: 8px;
    }
    .hero-content {
        position: static;
        margin: 24px auto 0 auto;
    }
    .mobile-section .mobile-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .header-container, .footer-container, main {
        padding-left: 2px;
        padding-right: 2px;
    }
    .hero-content {
        padding: 18px 6px;
    }
    .games-section .games-list {
        gap: 10px;
    }
    .game {
        width: 44vw;
        min-width: 120px;
        padding: 8px 4px 4px 4px;
    }
    .game img {
        width: 60px;
        height: 60px;
    }
    .mobile-section img {
        width: 100px;
    }
}
