/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Видео-фон */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Заголовок */
.header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.title {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Описание игры */
.game-description {
    background: #865f0bd9; /* Коричневый, в стиле Дикого Запада */
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.game-description h2 {
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.game-description ul {
    margin: 15px 0 15px 20px;
}

.game-description li {
    margin-bottom: 8px;
}

.inline-link {
    color: #FFD700;
    text-decoration: underline;
}

/* Кнопки */
.cta-buttons {
    text-align: center;
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 3px solid #FFD700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Промостраница */
.breadcrumbs {
    color: #aaa;
    margin: 20px 0;
}

.breadcrumbs a {
    color: #FFD700;
}

.promo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.promo-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    border: 5px solid #FFD700;
}

.promo-code-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.code-wrapper {
    display: flex;
    margin: 20px 0;
}

.code-wrapper input {
    flex-grow: 1;
    padding: 15px;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
    background: #222;
    color: #FFD700;
    border: 2px dashed #FFD700;
    border-radius: 10px 0 0 10px;
    font-weight: bold;
}

.copy-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-weight: bold;
}

.copy-btn:hover {
    background: #45a049;
}

.hint {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 10px;
}

.promo-tips {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-left: 5px solid #FFD700;
    margin-top: 30px;
}

/* Футер */
.footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.9);
    margin-top: 50px;
    font-size: 0.9rem;
}

.footer nav {
    margin-top: 15px;
}

.footer a {
    color: #FFD700;
    margin: 0 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-content {
        flex-direction: column;
    }
    
    .code-wrapper {
        flex-direction: column;
    }
    
    .code-wrapper input {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .copy-btn {
        border-radius: 10px;
        padding: 15px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.game-description, .promo-content {
    animation: fadeIn 0.8s ease-out;
}
/* Анимация для FAQ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    animation: fadeInDown 0.5s ease-out;
}

/* Адаптивность для FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}