* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #003266;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    color: #4993e3;
    text-decoration: none;
}

header {
    background: linear-gradient(135deg, #0a4c99 0%, #003266 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 230px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
}

.logo-country {
    font-size: 10px;
    color: #4993e3;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 14px;
}

nav a:hover {
    color: #4993e3;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #4993e3 0%, #0a4c99 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(73, 147, 227, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fa5800 0%, #d14800 100%);
    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 88, 0, 0.4);
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

/* Promo Block */
.promo-block {
    background: linear-gradient(135deg, #fa5800 0%, #d14800 100%);
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(250, 88, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.promo-code {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 10px 0;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-code:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.promo-date {
    font-size: 14px;
    margin-top: 5px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(10, 76, 153, 0.95) 0%, rgba(0, 50, 102, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a4c99" width="1200" height="600"/><circle cx="100" cy="100" r="80" fill="%234993e3" opacity="0.1"/><circle cx="1000" cy="400" r="120" fill="%23fa5800" opacity="0.1"/><circle cx="600" cy="300" r="150" fill="%234993e3" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 50, 102, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.download-section {
    margin: 30px 0;
}

.download-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #4993e3;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-download:hover {
    background: #4993e3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(73, 147, 227, 0.4);
}

.hero-notice {
    background: rgba(250, 88, 0, 0.2);
    border: 3px solid #fa5800;
    padding: 15px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 8px;
    text-align: left;
}

.hero-date {
    margin-top: 15px;
    font-size: 14px;
    color: #4993e3;
    font-weight: 600;
}

.content-section {
    display: flex;
    background: rgba(10, 76, 153, 0.3);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-direction: column;
}

.content-section h1 {
    color: #4993e3;
    margin: 40px 0 20px 0;
    font-size: 32px;
    text-shadow: 0 2px 10px rgba(73, 147, 227, 0.3);
}

.content-section h2 {
    color: #4993e3;
    margin: 35px 0 20px 0;
    font-size: 28px;
}

.content-section h3 {
    color: #fff;
    margin: 30px 0 15px 0;
    font-size: 22px;
}

h3,
.h3 {
    color: #fff;
    margin: 30px 0 15px 0;
    font-size: 22px;
}

.content-section h4 {
    color: #e0e0e0;
    margin: 25px 0 10px 0;
    font-size: 18px;
}

h4,
.h4 {
    color: #e0e0e0;
    margin: 25px 0 10px 0;
    font-size: 18px;
}

.content-section p {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 15px 0 15px 30px;
    color: #e0e0e0;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-section strong {
    color: #4993e3;
    font-weight: 700;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 50, 102, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.content-section table th {
    background: linear-gradient(135deg, #0a4c99 0%, #003266 100%);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.content-section table td {
    padding: 15px;
    border-bottom: 1px solid rgba(73, 147, 227, 0.2);
    color: #e0e0e0;
}

.content-section table tr:last-child td {
    border-bottom: none;
}

.content-section table tr:hover {
    background: rgba(73, 147, 227, 0.1);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(73, 147, 227, 0.3);
    transition: all 0.3s;
}

.content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(73, 147, 227, 0.4);
}

.app-download {
    background: linear-gradient(135deg, #4993e3 0%, #0a4c99 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(73, 147, 227, 0.3);
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '🎰';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app-download-content {
    position: relative;
    z-index: 1;
}

.app-download h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.app-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-version, .app-bonus {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a4c99 0%, #003266 100%);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #4993e3;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 150px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-text-area {
    background: rgba(0, 50, 102, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    color: #4993e3;
    font-size: 12px;
    min-height: 80px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #4993e3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4993e3;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.payment-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-bottom: 30px;
}

.payment-logo {
    width: 80px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #4993e3;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(73, 147, 227, 0.2);
    color: #4993e3;
    font-size: 14px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4993e3;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(73, 147, 227, 0.5);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        display: none;
    }

    .hero h1 {
        font-size: 24px;
    }

    .content-section h1 {
        font-size: 26px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .promo-code {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
.faq-section {
    margin: 40px 0;
}

.faq-section h2 {
    color: #4993e3;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 50, 102, 0.3);
    border: 2px solid rgba(73, 147, 227, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4993e3;
    box-shadow: 0 5px 20px rgba(73, 147, 227, 0.2);
}

.faq-item.active {
    background: rgba(10, 76, 153, 0.4);
    border-color: #4993e3;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(73, 147, 227, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    color: #4993e3;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fa5800;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.content-section table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-section table {
    min-width: 600px; /* Минимальная ширина таблицы */
}

/* Улучшенная обертка для таблиц */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 50, 102, 0.3);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #4993e3;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #fa5800;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .content-section table {
        font-size: 14px;
        min-width: 600px;
    }
    
    .content-section table th,
    .content-section table td {
        padding: 10px;
        white-space: nowrap;
    }
    
    /* Индикатор прокрутки */
    .table-wrapper::after {
        content: '← Прокрутите →';
        display: block;
        text-align: center;
        padding: 10px;
        color: #4993e3;
        font-size: 12px;
        background: rgba(73, 147, 227, 0.1);
        border-radius: 0 0 10px 10px;
    }
}