 /* Основные стили */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Muller', sans-serif;
            background-color: #212132;
            background-image: url(img/body_strips.526a52983c17baa3c7e277b3f871e06e.svg);
            color: #fff;
            line-height: 1.6;
        }
        .slots .category-icon{
            background-image: url(img/icons/icon_categories/icon_slots.f76d8383233a7579c6fb164a8638533b.svg);

        }
        .live .category-icon{
            background-image: url(img/icons/icon_categories/icon_live.3c4dec011d69a634a78c103dc7da4b79.svg);
        }
        .bonuses .category-icon{
            background-image: url(img/icons/icon_categories/icon_casino.975c7b7d830201139a49de8357c8d8df.svg);
        }
        .tournaments .category-icon{
            background-image: url(img/icons/icon_categories/icon_tournament.3e08b99c11d92bda07288896e01daee3.svg);
        }
        .category-icon{
            background-size: contain; /* или contain, в зависимости от желаемого эффекта */
    background-repeat: no-repeat; /* чтобы изображение не повторялось */
    background-position: center; /* чтобы изображение было по центру */
    height: 100%;
    width: auto;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Шапка */
        header {
            background-color: rgba(37, 37, 54, 0.95);
            /*position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            */
            width: 100%;
            height: 60px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .auth-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .btn-login {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
        }
        
        .btn-register {
            background-color: #fe284a;
            color: #fff;
            box-shadow: 0 4px 0 #871628;
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(2px);
        }
        
        /* Основной контент */
        main {
            margin-top: 80px;
        }
        
        .banner-section {
            margin-bottom: 30px;
            position: relative;
        }
        
        .banner {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .banner-text {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            background: linear-gradient(90deg, transparent 0%, rgba(50, 18, 88, 0.9) 25%, rgba(50, 18, 88, 0.9) 75%, transparent 100%);
            padding: 10px 0;
        }
        
        .banner-text p {
            font-size: 24px;
            font-weight: 700;
            color: #ffde26;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Навигация */
        .categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        
        @media (min-width: 768px) {
            .categories {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .category-item {
            background-color: #161626;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
        }
        
        .category-item.slots {
            border-top: 3px solid #17eada;
        }
        
        .category-item.live {
            border-top: 3px solid #de593e;
        }
        
        .category-item.bonuses {
            border-top: 3px solid #6ef770;
        }
        
        .category-item.tournaments {
            border-top: 3px solid #e8ce3a;
        }
        
        .category-icon {
            height: 40px;
            margin-bottom: 10px;
        }
        
        .category-name {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
        }
        
        /* Игры */
        .games-section {
            margin-bottom: 40px;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        @media (min-width: 768px) {
            .games-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        .game-card {
            background-color: #161626;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .game-card:hover {
            transform: scale(1.05);
        }
        
        .game-image {
            width: 100%;
            height: 150px;
            position: relative;
        }
        
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .game-actions {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .game-card:hover .game-actions {
            opacity: 1;
        }
        
        .game-title {
            padding: 10px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            height: 50px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        /* Контент */
        .content-section {
            background: linear-gradient(to bottom, #1c2240, #1c2240);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
        }
        
        .content-section h1 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .content-section h2 {
            font-size: 24px;
            margin: 25px 0 15px;
            color: #fff;
        }
        
        .content-section p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .content-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .content-section li {
            margin-bottom: 8px;
        }
        
        .content-image {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .button-primary {
            display: inline-block;
            background-color: #fe284a;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            margin: 15px 0;
            box-shadow: 0 4px 0 #871628;
            transition: all 0.3s ease;
        }
        
        .button-primary:hover {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #871628;
        }
        
        /* Футер */
        footer {
            background-color: #0a0a14;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #fe284a;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .telegram {
            background-color: #2ca3df;
        }
        
        .vkontakte {
            background-color: #3a6aa3;
        }
        
        .youtube {
            background-color: #ff0000;
        }
        
        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            text-align: center;
            border-top: 1px dashed #303036;
            padding-top: 20px;
        }
        
        .license {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .age-limit {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .footer-text {
            color: #646a87;
            font-size: 14px;
            line-height: 1.4;
        }
        
        /* Бонус виджет */
        .bonus-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;

            background: linear-gradient(to right, #321258, #623b8c);
            border-radius: 10px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        .bonus-close {
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #fff;
        }
        
        .bonus-image img {
            width: 60px;
            height: auto;
        }
        
        .bonus-text {
            color: #ffde26;
            font-weight: 700;
        }
        
        .bonus-text span {
            display: block;
            font-size: 18px;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            header {
                height: auto;
                padding: 10px 0;
            }
            
            .header-content {
                flex-direction: column;
                gap: 10px;
            }
            
            main {
                margin-top: 120px;
            }
            
            .banner {
                height: 200px;
            }
            
            .banner-text p {
                font-size: 18px;
            }
            
            .content-section {
                padding: 20px 15px;
            }
            
            .content-section h1 {
                font-size: 26px;
            }
            
            .content-section h2 {
                font-size: 20px;
            }
            
            .bonus-widget {
                bottom: 10px;
                right: 10px;
                left: 10px;
                justify-content: center;

                text-align: center;
            }
        }
        @media (max-width: 360px){
            .bonus-widget{
                flex-direction: column;
            }
        }