@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@800&display=swap');

:root {
    --color-bg: #13002B;
    --color-primary: #7000FF;
    --color-secondary: #3B3558;
    --color-text: #FFFFFF;
    --color-button: #FF4B26;
    --neon-primary: 0 0 20px rgba(112, 0, 255, 0.6);
    --neon-secondary: 0 0 30px rgba(255, 75, 38, 0.5);
    --max-width: 1000px;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Tilt Neon', sans-serif;
    background: var(--color-bg) url('../img/back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--color-text);
    line-height: 1.5;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(19, 0, 43, 0.95) 0%, 
        rgba(19, 0, 43, 0.85) 50%,
        rgba(112, 0, 255, 0.2) 100%);
    z-index: -1;
}

/* Неоновая анимация */
@keyframes neonPulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes borderGlow {
    0% { border-color: rgba(112, 0, 255, 0.3); }
    50% { border-color: rgba(112, 0, 255, 0.8); }
    100% { border-color: rgba(112, 0, 255, 0.3); }
}

/* Обновляем стили хедера */
.header__top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.header__logo {
    flex-shrink: 0;
    width: 180px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(112, 0, 255, 0.5));
    transition: transform 0.3s ease;
}

.header__logo:hover .header__logo-img {
    transform: scale(1.05);
}

.header__title {
    text-align: left;
    flex-grow: 1;
}

.header__title h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1em;
    text-align: left;
    color: #fde9ff;
    margin: 0 0 20px;
    text-shadow: 
        3px 1px 1px #7000FF,
        2px 2px 1px #FF4B26,
        4px 2px 1px #7000FF,
        3px 3px 1px #FF4B26,
        5px 3px 1px #7000FF,
        4px 4px 1px #FF4B26,
        6px 4px 1px #7000FF,
        5px 5px 1px #FF4B26,
        7px 5px 1px #7000FF,
        6px 6px 1px #FF4B26,
        8px 6px 1px #7000FF,
        7px 7px 1px #FF4B26,
        9px 7px 1px #7000FF;
    position: relative;
    letter-spacing: 1px;
}

.header__title h1::before {
    content: 'Top Sites de Paris Sportifs en France pour les Passionnés';
    position: absolute;
    top: 0;
    left: 0;
    text-shadow: 
    2px 2px 1px rgba(112, 0, 255, 0.8), -1px -1px 1px #FF4B26, -2px 2px 1px rgba(112, 0, 255, 0.8), 1px -1px 1px #FF4B26;
    z-index: 1;
}

.header__title h1 span {
    display: inline-block;
    position: relative;
    padding-left: 0.5rem;
    color: #FF4B26;
    text-shadow: 
        3px 1px 1px #7000FF,
        2px 2px 1px #FF4B26,
        4px 2px 1px #7000FF,
        3px 3px 1px #FF4B26,
        5px 3px 1px #7000FF;
}

.header__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Tilt Neon', sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Навигация */
.header__nav {
    display: none;
}

/* Стили для преимуществ */
.header__features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(112, 0, 255, 0.1);
    padding: 12px 25px;
    border-radius: 20px;
    border: 1px solid rgba(112, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.4);
    border-color: rgba(112, 0, 255, 0.6);
}

.feature__icon {
    font-size: 1.2em;
}

/* Обновляем стили для списка казино */
.casino-list {
    background: rgba(19, 0, 43, 0.8);
    border-radius: 20px;
    padding: 3px;
    box-shadow: 
        0 0 40px rgba(147, 112, 219, 0.2),
        inset 0 0 30px rgba(147, 112, 219, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    border: 1px solid rgba(147, 112, 219, 0.3);
    position: relative;
    overflow: hidden;
}

/* Обновляем неоновый эффект фона */
.casino-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 112, 219, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 112, 219, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Обновляем стили для карточек */
.casino-item {
    display: grid;
    grid-template-columns: 150px 120px minmax(200px, 1fr) 120px 200px;
    align-items: center;
    gap: 20px;
    background: linear-gradient(
        90deg,
        rgba(30, 20, 51, 0.95) 0%,
        rgba(40, 25, 65, 0.95) 100%
    );
    padding: 25px;
    margin: 3px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 75, 38, 0.2);
    transition: all 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 75, 38, 0.4);
    box-shadow: 0 0 30px rgba(255, 75, 38, 0.2);
}

/* Стили для ранга */
.casino-rank,
.casino-item__rank {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    color: #FF4B26;
    background: rgba(255, 75, 38, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-left: -20px;
    font-size: 1.2em;
    width: 130px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 75, 38, 0.3);
    box-shadow: 0 0 20px rgba(255, 75, 38, 0.2);
    text-shadow: 0 0 10px rgba(255, 75, 38, 0.5);
}

/* Стили для логотипов */
.casino-logo,
.casino-item__logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.casino-item:hover .casino-logo,
.casino-item:hover .casino-item__logo {
    transform: scale(1.1);
}

/* Стили для бонусов */
.bonus-amount,
.casino-item__bonus h3 {
    font-size: 1.6em;
    font-weight: 800;
    background: linear-gradient(90deg, #FF4B26, #FF8F47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 75, 38, 0.3);
    margin-bottom: 5px;
}

.bonus-extra,
.casino-item__bonus p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
}

/* Стили для рейтинга */
.rating {
    font-size: 2.2em;
    font-weight: 800;
    color: #FF4B26;
    text-shadow: 0 0 15px rgba(255, 75, 38, 0.3);
}

/* Стили для кнопки */
.play-button,
.casino-item__button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FF4B26, #FF8F47);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 75, 38, 0.3);
}

.play-button:hover,
.casino-item__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 75, 38, 0.5);
}

/* Медиа-запросы */
@media (max-width: 768px) {
    /* Делаем карточки компактнее */
    .casino-item {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 5px;
        margin-bottom: 8px;
    }

    /* Уменьшаем ранг */
    .casino-rank,
    .casino-item__rank {
        font-size: 0.9em;
        padding: 5px;
        margin: -8px -8px 5px;
    }

    /* Уменьшаем логотип */
    .casino-logo,
    .casino-item__logo {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    /* Уменьшаем бонусы */
    .bonus-amount,
    .casino-item__bonus h3 {
        font-size: 1.1em;
        margin-bottom: 0;
    }

    .bonus-extra,
    .casino-item__bonus p {
        font-size: 0.8em;
    }

    /* Уменьшаем рейтинг */
    .rating {
        font-size: 1.2em;
    }

    .votes {
        font-size: 0.75em;
    }

    .casino-rating,
    .casino-item__rating {
        margin: 2px 0;
    }

    /* Уменьшаем кнопку */
    .play-button,
    .casino-item__button {
        padding: 6px 12px;
        font-size: 0.8em;
        width: 100%;
        max-width: 200px;
    }

    .terms {
        font-size: 0.7em;
        margin-top: 1px;
    }

    /* Организуем элементы в строку */
    .casino-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .casino-logo,
    .casino-item__logo {
        order: 1;
        flex: 0 0 50px;
    }

    .casino-bonus,
    .casino-item__bonus {
        order: 2;
        flex: 1;
        text-align: left;
        padding-left: 10px;
    }

    .casino-rating,
    .casino-item__rating {
        order: 3;
        flex: 0 0 auto;
    }

    .casino-action,
    .casino-item__action {
        order: 4;
        width: 100%;
        margin-top: 5px;
    }

    .casino-rank,
    .casino-item__rank {
        width: 100%;
        text-align: center;
        border-radius: 0;
        margin: -25px -15px 15px;
    }

    .casino-rank::before,
    .casino-item__rank::before {
        display: none;
    }

    .casino-action,
    .casino-item__action {
        gap: 5px;
    }

    .play-button,
    .casino-item__button {
        margin: 0 auto;
    }

    .header__title h1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        text-align: center;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    .header__subtitle {
        text-align: center;
        font-size: 0.85em;
        padding: 0 10px;
        margin-top: 0.5rem;
    }

    /* Скрываем преимущества на мобильных */
    .header__features {
        display: none;
    }

    .header {
        padding: 10px 0 0;
    }

    .header__top {
        margin-bottom: 10px;
        gap: 10px;
    }

    .main-content {
        padding: 0 !important;
    }

    .casino-list {
        margin-top: 5px;
    }

    .casino-logo,
    .casino-item__logo {
        width: 80px;
        height: 80px;
    }

    .casino-rank,
    .casino-item__rank {
        margin: -12px -10px 8px;
    }

    .bonus-amount,
    .casino-item__bonus h3 {
        font-size: 1.3em;
        margin-bottom: 2px;
    }

    .bonus-extra,
    .casino-item__bonus p {
        font-size: 0.9em;
    }

    .rating {
        font-size: 1.6em;
    }

    .votes {
        font-size: 0.85em;
    }

    .casino-rating,
    .casino-item__rating {
        margin: 5px 0;
    }

    .play-button,
    .casino-item__button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .terms {
        font-size: 0.8em;
        margin-top: 2px;
    }
}

/* Футер */
.footer {
    background: rgba(19, 0, 43, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 0;
    margin-top: auto;
    position: relative;
}

/* Добавляем неоновую линию сверху футера */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(112, 0, 255, 0.3),
        rgba(255, 75, 38, 0.5),
        rgba(112, 0, 255, 0.8),
        rgba(255, 75, 38, 0.5),
        rgba(112, 0, 255, 0.3),
        transparent
    );
    box-shadow: 
        0 0 10px rgba(112, 0, 255, 0.3),
        0 0 20px rgba(255, 75, 38, 0.2);
    animation: footerGlow 3s ease-in-out infinite alternate;
}

/* Анимация свечения для линии футера */
@keyframes footerGlow {
    0% {
        opacity: 0.5;
        box-shadow: 
            0 0 10px rgba(112, 0, 255, 0.3),
            0 0 20px rgba(255, 75, 38, 0.2);
    }
    100% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(112, 0, 255, 0.5),
            0 0 30px rgba(255, 75, 38, 0.3);
    }
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .footer::before {
        height: 1px;
    }
}

/* Контент футера */
.footer__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Заголовки секций */
.footer__section-title {
    display: flex;
    gap: 100px;
    margin-bottom: 20px;
}

.footer__section-title h3 {
    color: #FF4B26;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 75, 38, 0.3);
    letter-spacing: 0.5px;
}

/* Секции футера */
.footer__sections {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
}

.footer__sections h3 {
    color: #FF4B26;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 20px;
    text-shadow: 0 0 10px rgba(255, 75, 38, 0.3);
    letter-spacing: 0.5px;
}

/* Ссылки */
.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__links li {
    margin-right: 15px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-family: 'Tilt Neon', sans-serif;
    position: relative;
}

.footer__links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Разделитель между ссылками */
.footer__links li:not(:last-child)::after {
    content: '|';
    color: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

@media (max-width: 768px) {
    .footer__links ul {
        justify-content: center;
        gap: 10px;
    }

    .footer__links li {
        margin-right: 10px;
    }

    .footer__links a {
        font-size: 0.85em;
    }
}

/* Информационные блоки */
.footer__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-block h4 {
    color: white;
    margin: 0 0 15px;
    font-size: 1.1em;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    font-family: 'Tilt Neon', sans-serif;
}

/* Партнеры */
.footer__partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.partner-logo {
    height: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Добавляем свечение за логотипами */
.partner-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(147, 112, 219, 0.2);
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-2px);
}

.partner-logo:hover::before {
    opacity: 1;
    width: 120%;
    height: 120%;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .footer__partners {
        flex-wrap: wrap;
        gap: 20px;
    }

    .partner-logo {
        height: 35px;
    }
}

/* Дисклеймер */
.footer__disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    padding-top: 20px;
    font-family: 'Tilt Neon', sans-serif;
}

/* Добавляем декоративные элементы фона */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* Круглые свечения */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.glow-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: glowPulse 8s infinite alternate;
}

.glow-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 75, 38, 0.1) 0%, transparent 70%);
    top: 40%;
    right: 10%;
    animation: glowPulse 6s infinite alternate-reverse;
}

.glow-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(61, 126, 255, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation: glowPulse 7s infinite alternate;
}

.glow-circle:nth-child(4) {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147, 64, 255, 0.12) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: glowPulse 9s infinite alternate-reverse;
}

/* Анимация пульсации для свечений */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Добавляем сетку на фон */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(112, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.main-content {
    flex: 1 0 auto;
    padding: 40px 0;
}

/* Верхняя плашка */
.top-alert {
    background: rgba(19, 0, 43, 0.95);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 0.9em;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(112, 0, 255, 0.3);
    font-family: 'Tilt Neon', sans-serif;
    backdrop-filter: blur(10px);
}

/* Неоновая линия */
.top-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 75, 38, 0.8),
        rgba(112, 0, 255, 0.8),
        transparent
    );
}

/* Контент плашки */
.top-alert__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Иконка 18+ */
.top-alert__age {
    color: #FF4B26;
    font-weight: 700;
    padding: 3px 8px;
    border: 1px solid rgba(255, 75, 38, 0.5);
    border-radius: 4px;
    background: rgba(255, 75, 38, 0.1);
    box-shadow: 0 0 10px rgba(255, 75, 38, 0.3);
}

/* Ссылка */
.top-alert__link {
    color: #FF4B26;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.top-alert__link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 75, 38, 0.5);
}

/* Телефон */
.top-alert__phone {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Хедер */
.header {
    position: relative;
    padding: 40px 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(112, 0, 255, 0.3),
        rgba(255, 75, 38, 0.5),
        rgba(112, 0, 255, 0.8),
        rgba(255, 75, 38, 0.5),
        rgba(112, 0, 255, 0.3),
        transparent
    );
    box-shadow: 
        0 0 10px rgba(112, 0, 255, 0.3),
        0 0 20px rgba(255, 75, 38, 0.2);
    animation: headerGlow 3s ease-in-out infinite alternate;
}

/* Анимация свечения для линии */
@keyframes headerGlow {
    0% {
        opacity: 0.5;
        box-shadow: 
            0 0 10px rgba(112, 0, 255, 0.3),
            0 0 20px rgba(255, 75, 38, 0.2);
    }
    100% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(112, 0, 255, 0.5),
            0 0 30px rgba(255, 75, 38, 0.3);
    }
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .header::before {
        height: 1px;
    }
}

.header__logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(112, 0, 255, 0.5));
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
    .casino-item {
        grid-template-columns: 120px 90px 1fr 100px 180px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .casino-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 25px 15px;
    }

    .casino-logo {
        margin: 0 auto;
    }

    .casino-bonus {
        border-left: none;
        padding: 0;
    }

    .casino-rating {
        margin: 10px 0;
    }

    .casino-action {
        text-align: center;
        padding-right: 0;
    }

    .play-button,
    .casino-item__button {
        width: 180px;
        margin: 0 auto;
    }
}

/* Информационные блоки в футере */
.footer__info {
    padding: 0 20px;
}

.footer__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-block {
    color: rgba(255, 255, 255, 0.8);
}

.info-block h4 {
    color: white;
    margin: 0 0 10px;
    font-size: 1.1em;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.6;
    font-family: 'Tilt Neon', sans-serif;
}

/* Обновляем медиа-запросы */
@media (max-width: 768px) {
    .footer__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__info {
        text-align: center;
        padding: 0;
    }
}

@keyframes titlePulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    100% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes titleGlow {
    0% {
        filter: blur(15px);
        opacity: 0.5;
    }
    100% {
        filter: blur(20px);
        opacity: 0.8;
    }
}

@keyframes spanGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(112, 0, 255, 0.5),
            0 0 20px rgba(112, 0, 255, 0.3),
            0 0 30px rgba(255, 75, 38, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(112, 0, 255, 0.8),
            0 0 30px rgba(112, 0, 255, 0.6),
            0 0 45px rgba(255, 75, 38, 0.6);
    }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    /* Верхняя плашка */
    .top-alert {
        padding: 10px 5px;
    }

    .top-alert__content {
        flex-direction: column;
        gap: 8px;
    }

    /* Хедер */
    .header__top {
        flex-direction: column;
        gap: 20px;
    }

    .header__logo {
        width: 120px;
    }

    .header__title h1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        text-align: center;
        line-height: 1.2;
    }

    .header__subtitle {
        text-align: center;
        font-size: 0.85em;
        padding: 0 10px;
    }

    /* Преимущества */
    .header__features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }

    /* Карточки казино */
    .casino-list {
        margin: 0 -15px;
        border-radius: 0;
    }

    .casino-item {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 15px;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .casino-rank,
    .casino-item__rank {
        width: calc(100% + 30px);
        margin: -20px -15px 15px;
        padding: 10px;
        text-align: center;
        border-radius: 0;
    }

    .casino-logo,
    .casino-item__logo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .casino-bonus,
    .casino-item__bonus {
        text-align: center;
        border-left: none;
        padding: 0;
    }

    .bonus-amount,
    .casino-item__bonus h3 {
        font-size: 1.3em;
    }

    .casino-rating,
    .casino-item__rating {
        margin: 10px 0;
    }

    .rating {
        font-size: 1.8em;
    }

    .casino-action,
    .casino-item__action {
        padding: 0;
    }

    .play-button,
    .casino-item__button {
        width: 100%;
        max-width: 250px;
    }

    /* Футер */
    .footer__sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__links {
        text-align: center;
    }

    .footer__partners {
        flex-wrap: wrap;
        gap: 20px;
    }

    .partner-logo {
        height: 35px;
    }

    .footer__disclaimer {
        font-size: 0.8em;
        padding: 20px 10px 0;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 375px) {
    .header__title h1 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .feature {
        font-size: 0.9em;
    }

    .casino-item {
        padding: 15px 10px;
    }

    .bonus-amount,
    .casino-item__bonus h3 {
        font-size: 1.2em;
    }

    .play-button,
    .casino-item__button {
        font-size: 0.85em;
        padding: 10px 15px;
    }
}

/* Стили для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .casino-item {
        grid-template-columns: 100px 90px 1fr 100px 160px;
        gap: 15px;
        padding: 15px;
    }

    .casino-logo,
    .casino-item__logo {
        width: 60px;
        height: 60px;
    }

    .bonus-amount,
    .casino-item__bonus h3 {
        font-size: 1.2em;
    }

    .rating {
        font-size: 1.8em;
    }

    .play-button,
    .casino-item__button {
        width: 150px;
        font-size: 0.85em;
    }
}

/* Информационные секции */
.info-sections {
    margin-top: 60px;
    background: rgba(19, 0, 43, 0.7);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 0, 255, 0.2);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
}

.info-section {
    padding: 25px 0;
    border-bottom: 1px solid rgba(112, 0, 255, 0.2);
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-section:first-child {
    padding-top: 0;
}

.info-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.6em;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #7000FF, #FF4B26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.info-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #7000FF, #FF4B26);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(112, 0, 255, 0.5);
}

.info-section p {
    font-family: 'Tilt Neon', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05em;
    margin: 0;
    padding-left: 20px;
}

/* Медиа-запросы для информационных секций */
@media (max-width: 768px) {
    .info-sections {
        padding: 20px;
        margin: 30px -15px 0;
        border-radius: 0;
    }

    .info-section {
        padding: 20px 0;
    }

    .info-section h2 {
        font-size: 1.3em;
    }

    .info-section p {
        font-size: 0.95em;
    }
}

/* Стили для страницы условий использования */
.terms-content {
    background: rgba(19, 0, 43, 0.7);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 0, 255, 0.2);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
    margin: 20px 0;
}

.terms-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #7000FF, #FF4B26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(112, 0, 255, 0.2);
}

.terms-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.terms-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #FF4B26;
    margin-bottom: 20px;
}

.terms-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding-left: 20px;
}

.terms-section ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: relative;
}

.terms-section ul li::before {
    content: '•';
    color: #FF4B26;
    position: absolute;
    left: -20px;
}

/* Стили для страницы ответственной игры */
.responsible-content {
    background: rgba(19, 0, 43, 0.7);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 0, 255, 0.2);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
    margin: 20px 0;
}

.responsible-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #7000FF, #FF4B26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.warning-box {
    background: rgba(255, 75, 38, 0.1);
    border: 1px solid rgba(255, 75, 38, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.emergency-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone-number {
    font-size: 2em;
    color: #FF4B26;
    font-weight: bold;
}

.availability, .free-call {
    color: rgba(255, 255, 255, 0.9);
}

.responsible-section {
    margin-bottom: 30px;
}

.responsible-tips li,
.warning-signs li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.responsible-tips li::before,
.warning-signs li::before {
    content: '✓';
    color: #FF4B26;
    position: absolute;
    left: 0;
}

.control-tools,
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tool-item,
.resource-item {
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.tool-item:hover,
.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
}

.tool-item h3,
.resource-item h3 {
    color: #FF4B26;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .terms-content,
    .responsible-content {
        padding: 20px;
        margin: 10px -15px;
        border-radius: 0;
    }

    .terms-content h1,
    .responsible-content h1 {
        font-size: 1.8em;
    }

    .terms-section h2 {
        font-size: 1.3em;
    }

    .control-tools,
    .help-resources {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.5em;
    }
}

/* Стили для модального окна проверки возраста */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 0, 43, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.age-verification__content {
    background: rgba(59, 53, 88, 0.3);
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.2);
    animation: modalAppear 0.5s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verification__icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.age-verification h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #7000FF, #FF4B26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.age-verification p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.age-verification__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-family: 'Tilt Neon', sans-serif;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn--yes {
    background: linear-gradient(45deg, #7000FF, #FF4B26);
    color: white;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.age-btn--no {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn:hover {
    transform: translateY(-2px);
}

.age-btn--yes:hover {
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.5);
}

.age-verification__disclaimer {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .age-verification__content {
        padding: 30px 20px;
    }

    .age-verification h2 {
        font-size: 1.5em;
    }

    .age-verification__buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
} 