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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #e8e4df;
    color: #000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.top-nav {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.top-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.top-nav a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.top-nav a:hover {
    color: #667eea;
}

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

.header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 32px;
}

.logo {
    height: 150px;
    width: 150px;
    margin-right: 5px;
    flex-shrink: 0;
}

.logo img {
    height: 150px;
    width: 150px;
    border-radius: 20px;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.header-date {
    font-size: 20px;
    color: #666;
    margin-bottom: 8px;
}

.header-count {
    font-size: 17px;
    color: #888;
}

.promo-description {
    background: transparent;
    border-radius: 0;
    padding: 0 20px 40px 20px;
    margin-bottom: 40px;
    box-shadow: none;
}

.promo-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #000;
}

.promo-description p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    max-width: 900px;
}

.promo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.promo-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 28px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-badge-wrapper {
    min-width: 160px;
    height: 140px;
    background: #f5f5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-badge {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.promo-content {
    flex: 1;
}

.promo-star {
    color: #ffd500;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-date {
    font-size: 14px;
    color: #999;
}

.promo-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.promo-button {
    background: #ffd500;
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: inline-block;
}

.promo-button:hover {
    background: #ffca00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.promo-button:active {
    transform: translateY(0);
}

/* FAQ Section - Без анимаций */
.faq-section {
    background: transparent;
    border-radius: 0;
    padding: 60px 0;
    box-shadow: none;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: left;
    color: #000;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: none;
    border-radius: 16px;
    margin: 0;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    background: transparent;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: #000;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 24px 28px;
}

.faq-item.active .faq-answer {
    display: block;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* Keywords */
.keywords {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.keywords a {
    display: inline-block;
    margin: 4px 2px;
    padding: 8px 16px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.2;
}

/* Footer */
.footer {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.footer-copyright {
    margin-bottom: 16px;
    color: #666;
    font-size: 15px;
}

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

.footer a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer a:hover {
    color: #ffd500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    border: none;
    background: none;
    color: #999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #000;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-right: 40px;
}

.modal-description {
    color: #666;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
}

.promo-code {
    background: #f8f8f8;
    border: 2px dashed #ffd500;
    padding: 24px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    border-radius: 14px;
    margin-bottom: 28px;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    color: #000;
}

.modal-button {
    background: #ffd500;
    color: #000;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    font-family: inherit;
}

.modal-button:hover {
    background: #ffca00;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }

    .header {
        flex-direction: column;
        gap: 24px;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .logo img {
        height: 140px;
        width: 140px;
    }

    .promo-card {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .promo-badge-wrapper {
        width: 100%;
        height: 100px;
    }

    .promo-badge {
        font-size: 32px;
    }

    .promo-description {
        padding: 0 20px 30px 20px;
        margin-bottom: 30px;
    }

    .promo-description h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .promo-description p {
        font-size: 16px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .keywords {
        padding: 30px 16px 50px;
    }

    .keywords a {
        font-size: 12px;
        padding: 7px 14px;
        margin: 3px 1px;
        border-radius: 14px;
    }

    .modal-content {
        padding: 36px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
