/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0f1c;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

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

/* ===== BACKGROUND ANIMATION ===== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="12" fill="rgba(10,255,100,0.04)" text-anchor="middle" dominant-baseline="middle">♠</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="10" fill="rgba(0,200,255,0.04)" text-anchor="middle" dominant-baseline="middle">♥</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="14" fill="rgba(255,215,0,0.04)" text-anchor="middle" dominant-baseline="middle">♦</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="8" fill="rgba(255,100,100,0.04)" text-anchor="middle" dominant-baseline="middle">♣</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="16" fill="rgba(100,255,100,0.03)" text-anchor="middle" dominant-baseline="middle">$</text></svg>');
    background-size: 200px 200px, 150px 150px, 180px 180px, 120px 120px, 220px 220px;
    animation: float 40s linear infinite;
}

@keyframes float {
    0% { 
        background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px; 
    }
    100% { 
        background-position: 200px 200px, 150px 150px, 180px 180px, 120px 120px, 220px 220px; 
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #0aff64;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Логотип */
.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #0aff64;
}

.green-text {
    color: #0aff64;
    text-shadow: 0 0 8px rgba(10, 255, 100, 0.5);
}

/* Основная навигация */
.main-nav {
    display: flex;
    gap: 5px;
    background: rgba(20, 30, 50, 0.8);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(10, 255, 100, 0.2);
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

.nav-link {
    padding: 12px 24px;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link:hover {
    background: rgba(10, 255, 100, 0.1);
    color: #0aff64;
}

.nav-link.active {
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    color: #0a0f1c;
    box-shadow: 0 4px 12px rgba(10, 255, 100, 0.3);
}

/* Кнопка "Играть" в шапке */
.btn-play {
    padding: 12px 30px;
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    border: none;
    border-radius: 10px;
    color: #0a0f1c;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 255, 100, 0.4);
}

/* Бейдж с промокодом в шапке */
.promo-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 255, 100, 0.1);
    padding: 10px 18px;
    border-radius: 10px;
    border: 2px solid #0aff64;
    white-space: nowrap;
}

.promo-badge span {
    color: #0aff64;
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-code {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0aff64;
    letter-spacing: 1px;
}

.btn-copy-small {
    background: rgba(10, 255, 100, 0.2);
    border: 1px solid #0aff64;
    color: #0aff64;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
}

.btn-copy-small:hover {
    background: #0aff64;
    color: #0a0f1c;
}

/* ===== MAIN CONTENT AREA ===== */
.main-content {
    padding: 40px 0 60px;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section h2 i {
    color: #0aff64;
    font-size: 1.6rem;
}

/* Карточки с контентом */
.content-card {
    background: rgba(20, 30, 50, 0.7);
    border: 1px solid rgba(10, 255, 100, 0.25);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.content-card p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.content-card strong {
    color: #0aff64;
    font-weight: 600;
}

/* Шаги/инструкции */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step-card {
    background: rgba(25, 35, 60, 0.8);
    border: 1px solid rgba(10, 255, 100, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0aff64, #00cc4d);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #0aff64;
    box-shadow: 0 10px 25px rgba(10, 255, 100, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    color: #0a0f1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(10, 255, 100, 0.3);
}

.step-card h3 {
    color: #0aff64;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step-card p {
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.step-link {
    display: inline-block;
    color: #0aff64;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 18px;
    border: 2px solid #0aff64;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.step-link:hover {
    background: #0aff64;
    color: #0a0f1c;
}

/* Главный промо-блок */
.promo-main-section {
    margin: 60px 0;
}

.promo-card {
    background: linear-gradient(145deg, rgba(15, 25, 45, 0.95), rgba(10, 20, 40, 0.95));
    border: 3px solid #0aff64;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(10, 255, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
}

.promo-subtitle {
    color: #0aff64;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.promo-code-large {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #0aff64;
    margin: 30px 0;
    text-shadow: 0 0 20px rgba(10, 255, 100, 0.7);
    letter-spacing: 4px;
    padding: 15px 30px;
    background: rgba(10, 255, 100, 0.1);
    border-radius: 12px;
    display: inline-block;
    border: 2px dashed #0aff64;
}

.promo-actions {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-copy-large {
    padding: 16px 45px;
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    border: none;
    border-radius: 10px;
    color: #0a0f1c;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-copy-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 255, 100, 0.5);
}

.copy-success {
    color: #0aff64;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 0;
    overflow: hidden;
}

.copy-success.active {
    opacity: 1;
    height: auto;
    animation: pulse 2s infinite;
}

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

.btn-register {
    padding: 18px 50px;
    background: linear-gradient(135deg, #00cc4d, #009933);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 204, 77, 0.4);
}

.promo-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 255, 100, 0.3);
    color: #0aff64;
    font-size: 1rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(10, 255, 100, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(20, 30, 50, 0.7);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: rgba(25, 35, 60, 0.8);
    border: none;
    color: white;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(10, 255, 100, 0.1);
}

.faq-question.active {
    background: rgba(10, 255, 100, 0.15);
    color: #0aff64;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(15, 25, 45, 0.8);
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
}

/* ===== СТИЛИ ДЛЯ DOWNLOAD PAGE ===== */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.download-card {
    background: rgba(25, 35, 60, 0.8);
    border: 2px solid rgba(10, 255, 100, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #0aff64;
    box-shadow: 0 10px 25px rgba(10, 255, 100, 0.2);
}

.download-card i {
    font-size: 3rem;
    color: #0aff64;
    margin-bottom: 20px;
}

.download-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.download-card p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.download-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    color: #0a0f1c;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 255, 100, 0.4);
}

/* ===== СТИЛИ ДЛЯ ZERKALO PAGE ===== */
.mirror-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.mirror-item {
    background: rgba(25, 35, 60, 0.8);
    border: 2px solid rgba(10, 255, 100, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mirror-item:hover {
    border-color: #0aff64;
    transform: translateY(-3px);
}

.mirror-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.mirror-status {
    display: flex;
    gap: 15px;
    align-items: center;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(10, 255, 100, 0.2);
    color: #0aff64;
    border: 1px solid #0aff64;
}

.status-ping {
    color: #a0a0a0;
    font-size: 0.85rem;
}

.mirror-url {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mirror-url code {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    color: #0aff64;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(10, 255, 100, 0.3);
}

.btn-copy-mirror {
    padding: 8px 16px;
    background: rgba(10, 255, 100, 0.2);
    border: 1px solid #0aff64;
    border-radius: 8px;
    color: #0aff64;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-copy-mirror:hover {
    background: #0aff64;
    color: #0a0f1c;
}

/* ===== СТИЛИ ДЛЯ PROMO PAGE ===== */
.promo-list {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.promo-item {
    background: rgba(25, 35, 60, 0.8);
    border: 2px solid rgba(10, 255, 100, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.promo-item:hover {
    border-color: #0aff64;
    transform: translateX(5px);
}

.promo-item-info h3 {
    color: #0aff64;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.promo-item-info p {
    color: #b0b0b0;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.promo-item-code {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0aff64;
    background: rgba(10, 255, 100, 0.1);
    padding: 8px 20px;
    border-radius: 10px;
    border: 2px dashed #0aff64;
    min-width: 180px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 15, 30, 0.95);
    border-top: 2px solid #0aff64;
    padding: 40px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-link {
    color: #0aff64;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-link:hover {
    color: white;
    background: rgba(10, 255, 100, 0.1);
}

.footer-link.active {
    background: rgba(10, 255, 100, 0.15);
    border-bottom: 2px solid #0aff64;
}

.footer-info {
    text-align: center;
    color: #a0a0a0;
    max-width: 800px;
}

.warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff9900;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.copyright {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #888;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin-top: 15px;
}

/* ===== MODAL WINDOW ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.95), rgba(15, 25, 45, 0.95));
    border: 3px solid #0aff64;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 20px 25px;
    background: rgba(10, 255, 100, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0aff64;
}

.modal-header h3 {
    color: white;
    font-size: 1.4rem;
}

.modal-close {
    background: none;
    border: none;
    color: #0aff64;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(10, 255, 100, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0aff64;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(10, 255, 100, 0.2);
}

.promo-input {
    background: rgba(10, 255, 100, 0.15) !important;
    font-weight: 800;
    color: #0aff64;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bonus-info {
    background: rgba(10, 255, 100, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #0aff64;
}

.bonus-info p {
    color: #0aff64;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-footer {
    padding: 20px 25px;
    text-align: center;
    border-top: 2px solid rgba(10, 255, 100, 0.3);
}

.modal-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    border: none;
    border-radius: 10px;
    color: #0a0f1c;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 255, 100, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        order: 2;
        width: 100%;
        margin: 10px 0;
        overflow-x: auto;
        padding: 10px 5px;
    }
    
    .header-buttons {
        order: 3;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 15px;
    }
    
    .promo-badge {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .promo-code-large {
        font-size: 2.2rem;
        padding: 12px 20px;
        letter-spacing: 3px;
    }
    
    .btn-copy-large, .btn-register {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .promo-card {
        padding: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .mirror-item, .promo-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .mirror-url, .promo-item-code {
        width: 100%;
    }
    
    .promo-item-code {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
    
    .promo-code-large {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .btn-play, .btn-copy-large, .btn-register {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #0aff64;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Адаптивность меню */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .main-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 30, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 0;
        border: none;
        border-top: 2px solid #0aff64;
        z-index: 1000;
        margin: 0;
    }
    
    .main-nav.active {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 10px;
    }
    
    .header-buttons {
        order: 3;
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .promo-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-text {
        display: none;
    }
    
    .nav-link i {
        font-size: 1.3rem;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-play i {
        margin-right: 0;
    }
    
    .promo-label {
        display: none;
    }
}

/* ===== ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ ИНТЕРАКТИВНЫХ КНОПОК ===== */

/* Общие стили для всех кнопок навигации */
.nav-link {
    padding: 14px 24px;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover {
    background: rgba(10, 255, 100, 0.15);
    color: #0aff64;
    border-color: rgba(10, 255, 100, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 255, 100, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, #0aff64, #00cc4d);
    color: #0a0f1c;
    border-color: #0aff64;
    box-shadow: 0 5px 20px rgba(10, 255, 100, 0.4);
}

.nav-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Логотип в шапке */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
}

.diamond-icon {
    color: #0aff64;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(10, 255, 100, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: white;
    font-size: 1.4rem;
}

.logo-green {
    color: #0aff64;
    font-size: 1.6rem;
    text-shadow: 0 0 8px rgba(10, 255, 100, 0.5);
}

/* Герой-секция */
.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(10, 255, 100, 0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #0aff64;
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.9;
}

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

.hero-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(20, 30, 50, 0.7);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(10, 255, 100, 0.3);
}

.promo-label {
    color: #0aff64;
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-code-large {
    font-family: 'Courier New', monospace;
    font-size: 3.2rem;
    font-weight: 900;
    color: #0aff64;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(10, 255, 100, 0.7);
    padding: 15px 30px;
    background: rgba(10, 255, 100, 0.1);
    border-radius: 15px;
    border: 2px dashed #0aff64;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0aff64;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 25px;
    background: rgba(10, 255, 100, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(10, 255, 100, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(10, 255, 100, 0.2);
}

.feature i {
    font-size: 1.4rem;
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: #0aff64;
    font-size: 2rem;
}

.section-subtitle {
    color: #0aff64;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CTA блок */
.cta-box {
    background: linear-gradient(135deg, rgba(10, 255, 100, 0.1), rgba(0, 200, 255, 0.1));
    border: 2px solid rgba(10, 255, 100, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.cta-box h3 {
    color: #0aff64;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-box p {
    color: #c0c0c0;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Промо-карта */
.promo-main-card {
    background: linear-gradient(135deg, rgba(15, 25, 45, 0.95), rgba(10, 20, 40, 0.95));
    border: 3px solid #0aff64;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(10, 255, 100, 0.3);
    margin: 40px 0;
}

.promo-card-content {
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-header h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.promo-description {
    color: #0aff64;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.promo-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.promo-code-text {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #0aff64;
    background: rgba(10, 255, 100, 0.1);
    padding: 20px 40px;
    border-radius: 15px;
    border: 3px dashed #0aff64;
    letter-spacing: 5px;
}

.bonus-details {
    background: rgba(10, 255, 100, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
    border: 2px solid rgba(10, 255, 100, 0.2);
}

.bonus-details h4 {
    color: #0aff64;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.bonus-details ul {
    list-style: none;
    padding: 0;
}

.bonus-details li {
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.bonus-details li i {
    color: #0aff64;
    font-size: 1.2rem;
}

/* Футер */
.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.footer-logo-link i {
    color: #0aff64;
    font-size: 2.2rem;
}

.footer-description {
    color: #0aff64;
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.footer-nav h4, .footer-info h4, .footer-promo h4 {
    color: #0aff64;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(10, 255, 100, 0.3);
    padding-bottom: 10px;
}

.footer-link {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    color: #0aff64;
    padding-left: 10px;
    border-bottom-color: rgba(10, 255, 100, 0.3);
}

.footer-promo-code {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 255, 100, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(10, 255, 100, 0.3);
    margin-bottom: 15px;
}

.footer-promo-code span {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0aff64;
    flex: 1;
}

.promo-hint {
    color: #0aff64;
    font-size: 0.9rem;
    font-style: italic;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .promo-code-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 2px solid #0aff64;
        border-bottom: 2px solid #0aff64;
        z-index: 1000;
    }
    
    .nav-inner {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .promo-code-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .promo-code-large {
        font-size: 2rem;
        padding: 12px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-promo {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .promo-code-text {
        font-size: 2rem;
        padding: 15px 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-text {
        display: none;
    }
    
    .nav-link {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .nav-link i {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .promo-code-large {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .promo-code-text {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}