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

:root {
    --color-primary: #FF7A3D;
    --color-success: #4CAF50;
    --color-bg: #ffffff;
    --color-text: #333333;
    --header-height: 60px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
}

/* Верхняя навигация */
.top-nav {
    background: #121212;
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: slideInLeft 0.6s ease-out;
}

.top-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.top-nav__buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn--login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--register {
    background: var(--color-primary);
    color: #fff;
}

.btn--bonus {
    background: var(--color-success);
    color: #fff;
}

/* Категории */
.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    background: #f5f5f5;
    margin-top: var(--header-height);
    border-bottom: 1px solid #e0e0e0;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.category-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}

.category-link.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

/* Основной контент */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: var(--color-bg);
    overflow-x: hidden;
    position: relative;
}

.main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out;
}

/* Баннер */
.banner {
    background: linear-gradient(to right, #f0f7ff, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    height: 400px;
    border: 1px solid #e0e0e0;
    animation: scaleIn 0.8s ease-out;
}

.banner-track {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.banner-dot.active {
    background: white;
    transform: scale(1.2);
}

.banner-dot:hover {
    transform: scale(1.2);
}

.banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Фильтры */
.filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 12px;
    flex: 0 0 100px;
    margin: 0 20px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.filter-item span {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.filter-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.filter-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text);
    transition: transform 0.2s ease;
}

.filter-item:hover .filter-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

.filter-item:hover .filter-icon svg {
    stroke: white;
    transform: scale(1.1);
}

.filter-item:hover {
    color: var(--color-primary);
    transform: translateY(-5px);
}

/* Игровые секции */
.games-section {
    margin-bottom: 30px;
    overflow: hidden;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    padding: 0 5px;
}

.game-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.games-grid {
    display: flex;
    gap: 20px;
    padding: 10px 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: -10px -5px;
}

.games-grid::-webkit-scrollbar {
    display: none;
}

.game-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.5s ease-out;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--color-text);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #e0e0e0;
}

.game-title {
    padding: 10px;
    font-size: 14px;
    color: var(--color-text);
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.game-play-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 0;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

.game-play-btn:hover {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .top-nav {
        padding: 0 15px;
        justify-content: center;
    }

    .top-nav__left {
        width: 100%;
        justify-content: center;
    }

    .top-nav__left .btn {
        display: none;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo img {
        height: 75px;
    }
    
    .categories {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #f5f5f5;
    }
    
    .categories::-webkit-scrollbar {
        display: none;
    }
    
    .banner {
        height: 200px;
        border-radius: 0;
        margin: -10px -10px 20px -10px;
        width: calc(100% + 20px);
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .main-content {
        padding: 10px 0;
        margin-bottom: 20px;
    }
    
    .filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 15px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-item {
        flex: 0 0 80px;
        margin: 0 10px;
    }

    .filter-item span {
        font-size: 10px;
    }

    .games-grid {
        gap: 15px;
        padding: 10px 15px;
        margin: -10px -15px;
    }

    .game-card {
        flex: 0 0 160px;
    }

    .game-title {
        font-size: 12px;
        padding: 8px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .banner-dots {
        bottom: 10px;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .game-play-btn {
        font-size: 12px;
        padding: 6px 0;
    }

    .company-info {
        padding: 10px 0;
        margin-bottom: 100px;
    }
}

/* Нижняя навигация (только для мобильных) */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 8px 15px;
        box-shadow: 0 -2px 4px rgba(0,0,0,0.2);
        justify-content: space-around;
        z-index: 1000;
    }

    .bottom-nav button {
        flex: 1;
        border: none;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: #666;
        font-size: 12px;
        cursor: pointer;
        padding: 8px 0;
        transition: color 0.2s ease;
    }

    .bottom-nav button:first-child {
        color: var(--color-primary);
    }

    .nav-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.2s ease;
    }

    .bottom-nav button:active .nav-icon {
        transform: scale(0.9);
    }

    .bottom-nav button:first-child .nav-icon {
        stroke: var(--color-primary);
    }
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.mobile-menu--active {
    display: block;
}

.mobile-menu__header {
    background: #000000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu__nav {
    background: #000000;
    height: 100%;
    width: 80%;
    max-width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0;
    overflow-y: auto;
    animation: slideInLeft 0.4s ease-out;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #2a2a2a;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 0.4s ease-out;
}

.mobile-menu__link:hover {
    background: #1a1a1a;
    transform: translateX(10px);
}

.mobile-menu__icon {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

/* Анимации для мобильного меню */
.mobile-menu__nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.mobile-menu--active .mobile-menu__nav {
    transform: translateX(0);
}

/* Удаляем стили карусели */
.banners-carousel,
.carousel-container,
.carousel-track,
.carousel-slide,
.promo-banner,
.promo-content,
.carousel-btn,
.carousel-btn--prev,
.carousel-btn--next,
.carousel-dots,
.carousel-dot {
    display: none;
}

/* Джекпоты */
.jackpots-banner {
    margin: 30px 0;
    padding: 0 5px;
}

.jackpots-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.jackpots-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.jackpots-content h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.jackpot-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.jackpot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jackpot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.jackpot-item:hover::before {
    opacity: 1;
}

.jackpot-label {
    color: rgba(255,255,255,0.9);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-amount {
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
}

.jackpot-mega .jackpot-amount {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
    text-decoration: none;
}

.jackpot-major .jackpot-amount {
    color: #E0E0E0;
    text-shadow: 0 0 20px rgba(224,224,224,0.3);
    text-decoration: none;
}

.jackpot-minor .jackpot-amount {
    color: #CD7F32;
    text-shadow: 0 0 20px rgba(205,127,50,0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .jackpots-banner {
        margin: 20px 0;
        padding: 0 15px;
    }

    .jackpots-content {
        padding: 30px 20px;
        border-radius: 12px;
        height: auto;
    }

    .jackpots-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .jackpots-grid {
        gap: 15px;
    }

    .jackpot-item {
        padding: 20px 15px;
    }

    .jackpot-label {
        font-size: 16px;
    }

    .jackpot-amount {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .jackpot-amount {
        font-size: 18px;
    }
}

/* Нижний баннер */
.bottom-banner {
    margin: 30px 0;
}

.bottom-banner .banner-content {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.bottom-banner h2 {
    color: white;
}

@media (max-width: 768px) {
    .bottom-banner {
        margin: 20px -10px;
        width: calc(100% + 20px);
        border-radius: 0;
    }
}

/* Нижний блок с ссылками */
.footer-links {
    background: #f5f5f5;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-links__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    animation: fadeIn 0.6s ease-out;
}

.footer-link:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-links {
        padding: 15px 0;
        margin-top: 20px;
    }

    .footer-links__container {
        padding: 0 15px;
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
    }
}

/* Блок со способами оплаты */
.payment-methods {
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

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

.payment-methods__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scaleIn 0.5s ease-out;
    transition: transform 0.3s ease;
}

.payment-method img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    background: #ffffff;
}

.payment-method:hover img {
    transform: scale(1.1);
}

.payment-method span {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .payment-methods {
        padding: 20px 0;
    }

    .payment-methods__container {
        padding: 0 15px;
    }

    .payment-methods__title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .payment-methods__grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .payment-method img {
        width: 50px;
        height: 35px;
    }

    .payment-method span {
        font-size: 11px;
    }
}

/* Блок с социальными сетями */
.social-links {
    background: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.social-links__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Информация о компании */
.company-info {
    background: #f5f5f5;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.company-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.company-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .social-links {
        padding: 15px 0;
    }

    .social-links__container {
        padding: 0 15px;
        gap: 20px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .company-info {
        padding: 10px 0;
        margin-bottom: 100px;
    }

    .company-info__container {
        padding: 0 15px;
    }

    .company-info p {
        font-size: 11px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Применение анимаций */
.top-nav {
    animation: slideInLeft 0.6s ease-out;
}

.categories {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.banner {
    animation: scaleIn 0.8s ease-out;
}

.filters {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.game-card {
    animation: scaleIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.game-play-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.game-play-btn:hover {
    transform: scale(1.05);
}

.jackpot-item {
    animation: rotateIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.jackpot-item:hover {
    transform: translateY(-5px) rotate(2deg);
}

.payment-method {
    animation: scaleIn 0.5s ease-out;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: scale(1.1);
}

.social-link {
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

/* Анимации для мобильного меню */
.mobile-menu__nav {
    animation: slideInLeft 0.4s ease-out;
}

.mobile-menu__link {
    animation: fadeIn 0.4s ease-out;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu__link:hover {
    transform: translateX(10px);
}

/* Анимации для баннеров */
.banner-slide {
    animation: fadeIn 0.5s ease-out;
}

.banner-dot {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.banner-dot:hover {
    transform: scale(1.2);
}

/* Анимации для кнопок */
.btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Анимации для фильтров */
.filter-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.filter-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.filter-item:hover .filter-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Блок с информацией об ответственной игре */
.responsible-gaming {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    animation: fadeIn 0.6s ease-out;
}

.responsible-gaming__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsible-gaming__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.responsible-gaming__content {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.responsible-gaming__content p {
    margin-bottom: 20px;
}

.responsible-gaming__content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .responsible-gaming {
        padding: 30px 0;
        margin: 20px 0;
    }

    .responsible-gaming__container {
        padding: 0 15px;
    }

    .responsible-gaming__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .responsible-gaming__content {
        font-size: 14px;
    }

    .responsible-gaming__content p {
        margin-bottom: 15px;
    }
}

.bottom-nav__link {
    flex: 1;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
    text-decoration: none;
}

.bottom-nav__link:first-child {
    color: var(--color-primary);
}

.bottom-nav__link:first-child .nav-icon {
    stroke: var(--color-primary);
}

#menuButton {
    color: #666;
    font-family: inherit;
}

#menuButton:hover {
    color: var(--color-primary);
}

#menuButton:hover .nav-icon {
    stroke: var(--color-primary);
}

/* Блок с информацией о бренде */
.brand-info {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    animation: fadeIn 0.6s ease-out;
}

.brand-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-info__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.brand-info__content {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.brand-info__content p {
    margin-bottom: 20px;
}

.brand-info__content p:last-child {
    margin-bottom: 0;
}

.brand-info__table {
    margin: 30px 0;
    overflow-x: auto;
}

.brand-info__table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-info__table th,
.brand-info__table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.brand-info__table th {
    background: #f5f5f5;
    font-weight: 600;
    color: var(--color-text);
}

.brand-info__table tr:last-child td {
    border-bottom: none;
}

.brand-info__table tr:hover td {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .brand-info {
        padding: 30px 0;
        margin: 20px 0;
    }

    .brand-info__container {
        padding: 0 15px;
    }

    .brand-info__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .brand-info__content {
        font-size: 14px;
    }

    .brand-info__content p {
        margin-bottom: 15px;
    }

    .brand-info__table {
        margin: 20px 0;
    }

    .brand-info__table th,
    .brand-info__table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* Карусель больших карточек */
.featured-games {
    margin: 40px 0;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-games-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.featured-games-carousel::-webkit-scrollbar {
    display: none;
}

.featured-game-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.featured-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.featured-game-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-game-card:hover .featured-game-image img {
    transform: scale(1.1);
}

.featured-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.featured-game-card:hover .featured-game-overlay {
    opacity: 1;
}

.featured-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255,122,61,0.3);
}

.featured-game-play-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,122,61,0.4);
}

.featured-game-play-btn:hover {
    transform: scale(1.05);
    background-color: #ff6b2b;
    box-shadow: 0 6px 20px rgba(255,122,61,0.5);
}

.play-icon {
    font-size: 20px;
}

.featured-game-info {
    padding: 20px;
    background: #fff;
}

.featured-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.featured-game-provider {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.featured-game-rating {
    font-size: 14px;
    color: #ffc107;
    font-weight: 600;
}

.featured-game-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.featured-game-stats {
    display: flex;
    gap: 20px;
}

.featured-game-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.stat-icon {
    font-size: 16px;
}

.featured-games-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.featured-games-prev,
.featured-games-next {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,122,61,0.3);
}

.featured-games-prev svg,
.featured-games-next svg {
    width: 24px;
    height: 24px;
}

.featured-games-prev:hover,
.featured-games-next:hover {
    transform: scale(1.1);
    background-color: #ff6b2b;
    box-shadow: 0 6px 20px rgba(255,122,61,0.4);
}

@media (max-width: 768px) {
    .featured-game-card {
        flex: 0 0 280px;
    }
    
    .featured-game-image {
        height: 200px;
    }
    
    .featured-game-title {
        font-size: 18px;
    }
    
    .featured-game-play-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .featured-games-controls {
        margin-top: 20px;
    }
    
    .featured-games-prev,
    .featured-games-next {
        width: 40px;
        height: 40px;
    }
} 