/* style.css */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6f8fb;
    color: #17345b;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
a {
    color: #d4145a;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}
.site-header {
    background: #17345b;
    color: #fff;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 3px solid #ffd700;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
}
.site-title {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    margin-left: 12px;
    letter-spacing: 1px;
}
.site-title .accent {
    color: #ffd700;
}
.main-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    font-size: 1em;
}
.main-nav a {
    white-space: nowrap;
    padding: 5px 14px;
    color: #fff;
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.15s, color 0.15s;
}
.main-nav a.active,
.main-nav a:hover {
    background: #ffd700;
    color: #17345b;
}
.lang-switcher {
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-switcher .active {
    color: #ffd700;
}
.lang-switcher .divider {
    color: #fff;
    opacity: 0.6;
}

.results-section {
    margin: 32px 0 24px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 12px 0 #e7ecfa;
    padding: 28px 24px;
}
.results-section h1 {
    margin-top: 0;
    font-size: 2em;
}
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 8px 0;
    background: #fdfdfc;
}
.results-table th, .results-table td {
    padding: 7px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.results-table th {
    background: #e7ecfa;
    font-weight: 600;
    color: #17345b;
}
.results-table tr:last-child td {
    border-bottom: none;
}
.bonus {
    color: #d4145a;
    font-weight: bold;
    font-size: 0.98em;
    margin-left: 6px;
}
.btn-details {
    display: inline-block;
    background: #ffd700;
    color: #17345b;
    padding: 4px 11px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.12s;
}
.btn-details:hover {
    background: #ffe158;
}

.results-update-note {
    color: #888;
    font-size: 0.98em;
    margin-top: 5px;
}
.lottery-icon img {
    display: block;
    margin: 0 auto 8px auto;
    background: #fffbe8;
    border-radius: 50%;
    box-shadow: 0 2px 8px #e7ecfa;
}
.seo-block {
    margin: 36px 0 18px 0;
    background: #f9f9f9;
    border-radius: 14px;
    padding: 26px 24px 28px 24px;
    box-shadow: 0 1px 4px #e7ecfa;
}
.seo-block h2, .seo-block h3 {
    color: #d4145a;
    margin-top: 18px;
}
.seo-block ul, .seo-block ol {
    margin-left: 18px;
    margin-bottom: 18px;
}
.faq-block {
    background: #fffbe8;
    border-radius: 10px;
    padding: 18px;
    margin: 20px 0 14px 0;
    box-shadow: 0 2px 8px #f2e7fa;
    font-size: 1.04em;
}
.faq-block strong {
    display: block;
    margin-top: 12px;
    color: #17345b;
}
.faq-block div {
    margin: 3px 0 6px 10px;
    color: #484858;
    font-size: 0.98em;
}
.site-footer {
    background: #17345b;
    color: #fff;
    padding: 26px 0 16px 0;
    margin-top: 60px;
    font-size: 1em;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.site-footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 8px;
}
.site-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .main-nav {
        font-size: 0.98em;
        gap: 4px;
        flex-wrap: wrap;
    }
    .main-nav a {
        padding: 4px 8px;
        margin: 0 1px;
    }
}
@media (max-width: 700px) {
    .container { width: 99%; }
    .seo-block { padding: 16px 5px 18px 5px;}
    .results-section { padding: 16px 6px; }
}
@media (max-width: 600px) {
    .main-nav {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav a {
        display: block;
        margin: 3px 0;
        border-radius: 0;
        padding: 7px 0 7px 7px;
    }
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        font-size: 0.99em;
    }
}
