:root {
    --primary-color: #FF4B4B;
    --secondary-color: #111111;
    --accent-color: #FFD700;
    --text-color: #FFFFFF;
    --button-border-color: #FF4B4B;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.header {
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    padding: 0.5rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: radial-gradient(circle at top right, rgba(255, 75, 75, 0.1), transparent);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 100px;
    text-align: left;
}

.hero-graphics {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
}

.game-preview.animated {
    max-width: 95%;
    height: auto;
    border-radius: 20px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content h1 {
    font-size: 6.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
}

.hero-content h1 .preposition {
    color: #FFFFFF;
    display: inline;
    font-size: 5.5rem;
}

.hero-content h1 .game-name {
    color: #FFD700;
    display: block;
    margin-top: -10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 90%;
    text-align: left;
    margin: 1.5rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
    justify-content: flex-start;
    width: auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--button-border-color);
}

/* Hover effects */
.btn-primary:hover,
.btn-register:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

.btn-secondary:hover,
.btn-login:hover {
    background: rgba(255, 75, 75, 0.1);
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

.aviator-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
}

.floating-logo {
    width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.logo {
    margin-right: auto;
    padding-right: 20px;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-left: -15px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.coin, .shape, .emoji {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.coin {
    font-size: 3rem;
    color: var(--accent-color);
    top: 0;
    right: 0;
}

.shape {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    right: 30%;
    animation-delay: 0.5s;
}

.emoji {
    font-size: 3rem;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

.section {
    padding: 40px 5%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-graphics {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content h1 .preposition {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

/* Strategy Section Styles */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.strategy-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Bonus Section Styles */
.bonus-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0 15px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
}

.bonus-card .btn-primary {
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.bonus-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 75, 75, 0.1);
}

.bonus-card .btn-primary {
    width: 100%;
    margin-top: auto;
    padding: 12px 25px;
}

/* Section Headers */
.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bonus-container,
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card,
    .strategy-card {
        margin: 1rem;
    }
}

/* Стили для popup */
.bonus-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bonus-popup.show {
    opacity: 1;
    visibility: visible;
}

.bonus-popup-content {
    background: linear-gradient(145deg, #1E1E1E, #2D2D2D);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 75, 75, 0.2);
    box-sizing: border-box;
}

.bonus-popup-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-popup-body .btn-primary {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 20px;
}

.bonus-popup-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.bonus-popup-close:hover {
    color: var(--primary-color);
}

.bonus-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bonus-label {
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.bonus-amount-large {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.bonus-timer {
    text-align: center;
    margin: 1.5rem 0;
}

.timer {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.bonus-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bonus-highlights li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Пульсирующая аниация для кнопки */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 75, 75, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 75, 0);
    }
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .bonus-popup-content {
        width: 85%;
        max-width: 300px;
        margin: 20px auto;
        padding: 20px;
    }

    .bonus-popup-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bonus-amount-large {
        font-size: 3rem;
        margin: 5px 0;
    }

    .bonus-popup-body .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 10px 15px;
        font-size: 12px;
    }

    /* Фиксим кнопки в hero секции */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        padding: 0;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 0 1 auto;
        min-width: 140px;
        font-size: 12px;
        padding: 10px 15px;
    }

    /* Фиксим кнопки в бонусных карточках */
    .bonus-card .btn-primary {
        width: 100%;
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .bonus-popup-content {
        width: 90%;
        padding: 15px;
    }
}

/* Info Section Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.1;
    color: var(--primary-color);
}

.info-tips {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

/* Tips Section Styles */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Testimonials Section Styles */
.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease;
    filter: blur(1px);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 75, 75, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

.dot.active::after {
    opacity: 1;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }
}

/* Hover Effects */
.tip-card:hover {
    transform: translateY(-10px);
}

.info-card:hover {
    border-color: var(--primary-color);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .info-grid,
    .tips-container,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* Для мобилных устройств */
@media (max-width: 768px) {
    .game-preview.animated {
        max-width: 95%;
    }
}

.preview-text {
    position: relative;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(255, 75, 75, 0.3);
    writing-mode: horizontal-tb;
    margin-top: -20px;
}

/* Добавляем медиа-запросы для адаптивности */

/* Планшеты */
@media (max-width: 1024px) {
    .hero {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .hero-content h1 .preposition {
        font-size: 4rem;
    }

    .game-preview.animated {
        max-width: 85%;
    }

    .preview-text {
        font-size: 2.8rem;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    /* Основной контейнер */
    .hero {
        flex-direction: column;
        padding: 60px 20px 40px;
        text-align: left;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* Контент */
    .hero-content {
        width: 100%;
        margin: 0;
        padding: 0;
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 10px 0;
        width: 100%;
        white-space: normal;
        margin-bottom: 15px;
    }

    .hero-content h1 .preposition,
    .hero-content h1 .game-name {
        font-size: 28px;
        display: inline;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        margin: 20px 0;
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        font-size: 12px;
        padding: 10px 20px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 11px;
        padding: 0.3rem;
    }

    /* Слйдер отзывов для мобильных */
    .testimonials-container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .testimonials-slider {
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.3s ease;
        width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        opacity: 1;
        transform: none;
        filter: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

    /* тили для нопок навигации */
    .slider-btn {
        display: none; /* Убираем стрелки на мобильных */
    }

    /* Стили для точек навигации */
    .slider-dots {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        padding: 10px 0;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 75, 75, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    /* Добавляем свайп-индикатор */
    .swipe-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
    }

    .swipe-indicator::before,
    .swipe-indicator::after {
        content: '←';
        margin: 0 5px;
    }

    .swipe-indicator::after {
        content: '→';
    }

    /* Кнопки */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 20px 0;
        padding-left: 20px;
    }

    /* Превью игры */
    .hero-graphics {
        width: 100%;
        margin: 30px 0 0 0;
        padding: 0;
    }

    .game-preview.animated {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    /* Секции */
    .section {
        padding: 40px 15px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Карточки */
    .features-grid,
    .strategy-grid,
    .bonus-container,
    .tips-container {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Навигация */
    .nav-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Попап */
    .bonus-popup-content {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
    .hero {
        padding: 60px 10px 30px;
    }

    .section {
        padding: 30px 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Обновляем стили для хедера */
.header {
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    padding: 0.5rem;
    white-space: nowrap;
}

/* Обновляем стили для свайп-индикатора */
.swipe-indicator {
    display: none; /* Скрываем на десктопе */
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .swipe-indicator {
        display: flex; /* Показываем только на мобильных */
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 13px;
        padding: 0.4rem;
    }
}

/* Обновляем стили для кнопок в мобильной версии */
@media (max-width: 768px) {
    .hero-content {
        width: 100%;
        margin: 0;
        padding: 0 20px; /* Одинаковый padding слева и справа */
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 20px 0;
        padding: 0; /* Убираем padding у кнопок */
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 0;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Контент */
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin: 0 0 10px 0;
        width: 100%;
    }

    .hero-content p {
        font-size: 16px;
        margin: 10px 0;
        width: 100%;
    }
}

/* Добавляем стили для характеристик игры */
.game-specs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 75, 75, 0.1);
}

.spec-icon {
    font-size: 1.5rem;
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-color);
    font-weight: 500;
    margin-left: auto;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .spec-item {
        padding: 0.8rem;
    }

    .spec-label {
        font-size: 0.85rem;
    }
}

/* Стили для секции "Об игре" */
.about-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Основная информация */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-row {
    display: flex;
    gap: 1rem;
}

.about-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
}

.about-item .icon {
    font-size: 1.5rem;
}

.about-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.about-item .value {
    margin-left: auto;
    font-weight: 500;
}

/* Характеристики */
.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 75, 75, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Преимущества */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 75, 75, 0.1);
}

.feature-icon {
    font-size: 2rem;
}

.feature-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1rem;
    }
}

/* Добавляем классы для SEO-значимых элементов */
.seo-heading {
    font-size: 6.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.seo-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
    line-height: 1.4;
}

/* Добавляем стили для новой SEO-секции */
.seo-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
}

.seo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.seo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 75, 75, 0.1);
}

.seo-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .seo-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .seo-card {
        padding: 1.5rem;
    }
}

/* Обновляем стили для попапа на мобильных устройствах */
@media (max-width: 768px) {
    .bonus-popup-content {
        width: 90%;
        max-width: 320px;
        margin: 20px auto;
        padding: 15px;
    }

    .bonus-popup-header {
        flex-direction: column;
        text-align: center;
    }

    .bonus-amount-large {
        font-size: 3rem;
        margin: 10px 0;
    }

    .bonus-popup-body .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 10px 15px;
        font-size: 12px;
    }

    /* Фиксим кнопки в hero секции */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        padding: 0;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 0 1 auto;
        min-width: 140px;
        font-size: 12px;
        padding: 10px 15px;
    }

    /* Фиксим кнопки в бонусных карточках */
    .bonus-card .btn-primary {
        width: 100%;
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
} 