 @import url(https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;400;500;700;900&display=swap);
            
            :root {
                --primary-color: #5056714a;
                --secondary-color: #247f9a0d;
                --accent-color: #bb1fa4;
                --gradient-primary: linear-gradient(122deg, #bf9d5f 0, #885845 100%);
                --gradient-secondary: linear-gradient(138deg, rgba(57, 50, 83, 0.78) 0, rgba(6, 38, 21, 0.28) 100%);
                --gradient-button: linear-gradient(180deg, rgb(210 175 112) 0, rgb(139 94 76) 100%);
                --gradient-button-hover: linear-gradient(180deg, rgb(252 211 137) 0, rgb(139 94 76) 100%);
                --text-color: #f1f3ff;
                --text-secondary: #c1c5d6;
                --border-radius: 10px;
                --border-radius-sm: 5px;
                --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
            
            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

            body {
                background: #0a121d url('/img/bg/bg-pattern.png') repeat;
                font-family: 'Roboto Condensed', sans-serif;
                color: var(--text-color);
                min-height: 100vh;
                margin: 0;
                padding: 0;
                line-height: 1.6;
            }

            html {
                overflow-x: hidden;
                position: relative;
            }

            a {
                color: var(--text-secondary);
                text-decoration: none;
                transition: all 0.3s ease;
            }

            a:hover {
                color: #fff;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 15px;
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                    opacity: 1;
                }
                50% {
                    transform: scale(1.05);
                    opacity: 0.8;
                }
                100% {
                    transform: scale(1);
                    opacity: 1;
                }
            }
            
            @keyframes gradientBg {
                0% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
                100% { background-position: 0% 50%; }
            }
            
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .animated-gradient {
                background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
                background-size: 400% 400%;
                animation: gradientBg 15s ease infinite;
            }

            .header {
                background: var(--gradient-secondary);
                box-shadow: -3px 5px 13px 0 rgba(0, 0, 0, 0.1);
                padding: 15px 0;
                position: relative;
                z-index: 100;
            }

            .header-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo-link {
                display: flex;
                align-items: center;
            }

            .logo {
                width: 97px;
                filter: contrast(1.3);
                transition: transform 0.3s ease;
            }
            
            .logo:hover {
                transform: scale(1.1);
            }

            .logo-text {
                font-family: Roboto;
                font-size: 24px;
                font-weight: 900;
                color: #fbf2ff;
                text-shadow: 2px 2px 2px #763a87;
                margin-left: 10px;
                text-transform: uppercase;
            }

            .auth-buttons {
                display: flex;
                gap: 10px;
            }

            .auth-btn {
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: var(--border-radius-sm);
                color: #fbf2ff;
                font-family: Roboto;
                font-size: 16px;
                font-weight: 700;
                padding: 10px 20px;
                text-shadow: 1px 1px 1px #763a87;
                text-transform: uppercase;
                cursor: pointer;
                transition: all 0.3s;
            }

            .auth-btn:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .register-btn {
                background: var(--gradient-button);
                color: white;
            }
            
            .register-btn:hover {
                background: var(--gradient-button-hover);
            }

            .nav {
                background: rgba(30, 33, 47, 0.7);
                border-radius: var(--border-radius);
                margin-top: 20px;
                padding: 5px;
                backdrop-filter: blur(5px);
                box-shadow: var(--box-shadow);
            }

            .nav-list {
                display: flex;
                list-style: none;
                flex-wrap: wrap;
            }

            .nav-item {
                position: relative;
                margin: 5px;
            }

            .nav-link {
                display: flex;
                align-items: center;
                background: rgba(255, 255, 255, 0.07);
                border-radius: var(--border-radius-sm);
                padding: 10px 15px;
                color: #d8d3d3;
                font-size: 14px;
                transition: all 0.3s;
                position: relative;
                overflow: hidden;
            }

            .nav-link:hover {
                background: rgba(255, 255, 255, 0.15);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, #a16bc2 0%, #2b4a64 100%);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }
            
            .nav-link:hover::after {
                transform: scaleX(1);
            }

            .nav-link img {
                width: 24px;
                height: 24px;
                margin-right: 8px;
                opacity: 0.9;
            }

            .nav-link .name {
                font-weight: 600;
            }

            .nav-link .second-name {
                margin-left: 10px;
                color: #8c92a8;
                font-size: 0.9em;
            }
            
            .nav-link i {
                margin-right: 8px;
                font-size: 18px;
            }

            .hero {
                position: relative;
                overflow: hidden;
                border-radius: var(--border-radius);
                margin-top: 20px;
                box-shadow: var(--box-shadow);
            }

            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url("/img/bg/19.jpg") 50% 0 no-repeat;
                background-size: cover;
                opacity: 0.1;
                filter: grayscale(0.7);
                z-index: -1;
            }

            .hero-content {
                padding: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                min-height: 400px;
                z-index: 1;
                position: relative;
            }

            .hero-title {
                font-size: 48px;
                font-weight: 900;
                color: #fff;
                text-transform: uppercase;
                margin-bottom: 20px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                animation: fadeIn 1s ease-out;
            }

            .hero-subtitle {
                font-size: 24px;
                font-weight: 400;
                color: #d8d8d8;
                margin-bottom: 30px;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
                max-width: 600px;
                animation: fadeIn 1.2s ease-out;
            }

            .hero-btn {
                display: inline-block;
                background: var(--gradient-button);
                border: none;
                color: white;
                padding: 15px 30px;
                border-radius: var(--border-radius-sm);
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                cursor: pointer;
                transition: all 0.3s;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                animation: fadeIn 1.4s ease-out;
            }

            .hero-btn:hover {
                background: var(--gradient-button-hover);
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }
            
            .hero-features {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 20px;
                gap: 20px;
                animation: fadeIn 1.6s ease-out;
            }
            
            .hero-feature {
                display: flex;
                align-items: center;
                background: rgba(255, 255, 255, 0.1);
                border-radius: var(--border-radius-sm);
                padding: 10px 15px;
                backdrop-filter: blur(5px);
            }
            
            .hero-feature i {
                color: #f7d93f;
                margin-right: 10px;
                font-size: 18px;
            }

            .banner {
                background: linear-gradient(90deg, rgba(171, 2, 58, 0.8) 0, rgba(65, 100, 177, 0.97) 100%);
                padding: 20px;
                border-radius: var(--border-radius);
                margin-top: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                box-shadow: var(--box-shadow);
            }
            
            .banner-text {
                flex: 1;
            }
            
            .banner-title {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 5px;
            }
            
            .banner-subtitle {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.9);
            }
            
            .banner-btn {
                background: #fff;
                color: #333;
                font-weight: 700;
                padding: 10px 20px;
                border-radius: var(--border-radius-sm);
                margin-left: 20px;
                transition: all 0.3s;
            }
            
            .banner-btn:hover {
                background: #f1f1f1;
                color: #000;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .search-panel {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: rgba(30, 33, 47, 0.7);
                padding: 15px 20px;
                border-radius: var(--border-radius);
                margin-top: 20px;
                backdrop-filter: blur(5px);
                box-shadow: var(--box-shadow);
            }

            .search-actions {
                display: flex;
                gap: 10px;
            }

            .providers-btn {
                background: rgba(38, 34, 55, 0.68);
                border: 2px solid rgba(255, 255, 255, 0.1);
                border-radius: 30px;
                color: #fff;
                font-family: Roboto;
                font-size: 15px;
                padding: 10px 20px;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
            }

            .providers-btn i {
                margin-right: 5px;
            }

            .providers-btn:hover {
                background: rgba(38, 34, 55, 0.78);
                border: 2px solid #d09ae9;
            }

            .filter-btn {
                background: rgba(38, 34, 55, 0.68);
                border: 2px solid rgba(255, 255, 255, 0.1);
                border-radius: 30px;
                color: #fff;
                font-family: Roboto;
                font-size: 15px;
                padding: 10px 20px;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
            }

            .filter-btn i {
                margin-right: 5px;
            }

            .filter-btn:hover {
                background: rgba(38, 34, 55, 0.78);
                border: 2px solid #9ae9c2;
            }

            .search-box {
                position: relative;
                flex: 1;
                max-width: 400px;
                margin-left: 20px;
            }

            .search-input {
                width: 100%;
                height: 44px;
                background: rgba(255, 255, 255, 0.12);
                border: 2px solid rgba(255, 255, 255, 0.1);
                border-radius: 30px;
                color: #fff;
                font-size: 16px;
                padding: 0 20px 0 45px;
                transition: all 0.3s;
            }

            .search-input:hover, .search-input:focus {
                background: rgba(255, 255, 255, 0.2);
                border: 2px solid rgba(145, 53, 223, 0.59);
                outline: none;
            }

            .search-input::placeholder {
                color: rgba(255, 255, 255, 0.7);
                font-size: 16px;
            }
            
            .search-icon {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: rgba(255, 255, 255, 0.7);
                pointer-events: none;
            }

            .categories-tabs {
                display: flex;
                flex-wrap: wrap;
                margin-top: 30px;
                gap: 10px;
            }

            .category-tab {
                background: rgba(30, 33, 47, 0.5);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: var(--border-radius-sm);
                padding: 10px 20px;
                cursor: pointer;
                transition: all 0.3s;
            }

            .category-tab:hover, .category-tab.active {
                background: rgba(57, 50, 83, 0.9);
                border-color: rgba(255, 255, 255, 0.3);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .category-tab.active {
                position: relative;
            }
            
            .category-tab.active::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, #a16bc2 0%, #2b4a64 100%);
            }

            .section-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin: 30px 0 20px;
            }

            .section-title {
                font-size: 24px;
                font-weight: 700;
                color: #fff;
                text-transform: uppercase;
                position: relative;
                padding-left: 15px;
                display: flex;
                align-items: center;
            }
            
            .section-title::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(to bottom, #a16bc2, #2b4a64);
                border-radius: 5px;
            }
            
            .section-title i {
                margin-right: 10px;
                color: #f7d93f;
            }

            .view-all {
                color: #a16bc2;
                font-weight: 600;
                transition: all 0.3s;
            }

            .view-all:hover {
                color: #d09ae9;
                text-decoration: underline;
            }

            .games-grid {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 15px;
                animation: fadeIn 0.8s ease-out;
            }

            .game-card {
                overflow: hidden;
                position: relative;
                display: flex;
                flex-direction: column;
                background: #141623;
                border-radius: var(--border-radius);
                box-shadow: 0 5px 10px 2px rgb(8 10 12 / 20%);
                transition: all 0.3s;
                cursor: pointer;
                height: 100%;
            }

            .game-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            }

            .game-img-container {
                position: relative;
                overflow: hidden;
                padding-top: 75%; /* 4:3 Aspect Ratio */
            }

            .game-img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.5s;
            }

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

            .game-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(19, 24, 31, 0.7);
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 0;
                transition: all 0.3s;
                backdrop-filter: blur(2px);
            }

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

            .game-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 80%;
            }

            .play-btn {
                display: flex;
                justify-content: center;
                align-items: center;
                background: var(--gradient-button);
                border: none;
                color: white;
                padding: 10px;
                border-radius: var(--border-radius-sm);
                font-weight: 600;
                text-transform: uppercase;
                transition: all 0.3s;
                width: 100%;
            }
            
            .play-btn i {
                margin-right: 5px;
            }

            .play-btn:hover {
                background: var(--gradient-button-hover);
                transform: translateY(-2px);
            }

            .demo-btn {
                display: flex;
                justify-content: center;
                align-items: center;
                background: rgba(54, 64, 84, 0.8);
                color: #fff;
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 10px;
                border-radius: var(--border-radius-sm);
                transition: all 0.3s;
                width: 100%;
            }
            
            .demo-btn i {
                margin-right: 5px;
            }

            .demo-btn:hover {
                background: rgba(83, 97, 123, 0.9);
                color: #fff;
                transform: translateY(-2px);
            }

            .game-details {
                padding: 15px;
                background: linear-gradient(179deg, rgba(18, 59, 68, 0.15) 0, rgba(66, 52, 67, 0.44) 100%);
            }

            .game-name {
                font-size: 16px;
                font-weight: 500;
                text-align: center;
                margin-bottom: 5px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .game-provider {
                color: rgba(255, 255, 255, 0.7);
                font-size: 12px;
                text-align: center;
            }

            .provider-logo {
                position: absolute;
                width: 50px;
                bottom: 5px;
                left: 5px;
                filter: drop-shadow(1px 2px 1px #000);
                opacity: 0.9;
            }

            .game-badge {
                position: absolute;
                padding: 5px 10px;
                border-radius: 20px;
                font-size: 11px;
                font-weight: 700;
                z-index: 2;
            }

            .badge-top {
                background: linear-gradient(90deg, rgba(171, 2, 58, 0.8) 0, rgba(65, 100, 177, 0.97) 100%);
                left: 10px;
                top: 10px;
                color: #fff;
            }

            .badge-new {
                background: rgba(245, 143, 41, 0.9);
                right: 10px;
                top: 10px;
                color: #fff;
            }
            
            .badge-hot {
                background: rgba(220, 53, 69, 0.9);
                right: 10px;
                top: 10px;
                color: #fff;
            }

            .badge-rtp {
                left: 10px;
                bottom: 10px;
                padding: 3px 8px;
                color: #f4faf0;
                font-size: 10px;
                border-radius: 20px;
                background: rgba(0, 0, 0, 0.7);
            }

            .badge-rtp.green {
                color: #00ff7f;
            }
            
            .badge-rtp.yellow {
                color: #ffd700;
            }

            .badge-rtp.red {
                color: #ff6347;
            }
            
            .jackpot-display {
                background: linear-gradient(90deg, rgba(45, 35, 60, 0.8) 0, rgba(81, 40, 136, 0.8) 100%);
                border-radius: var(--border-radius);
                padding: 20px;
                margin-top: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: var(--box-shadow);
                overflow: hidden;
                position: relative;
            }
            
            .jackpot-display::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('/img/bg/jackpot-bg.jpg') center/cover no-repeat;
                opacity: 0.2;
            }
            
            .jackpot-label {
                font-size: 24px;
                font-weight: 700;
                margin-right: 20px;
                color: #fff;
                text-transform: uppercase;
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            }
            
            .jackpot-amount {
                font-size: 32px;
                font-weight: 900;
                color: #f7d93f;
                text-shadow: 0 0 10px rgba(247, 217, 63, 0.8);
                animation: pulse 2s infinite;
            }
            
            .providers-wrapper {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(19, 10, 19, 0.95);
                z-index: 1000;
                overflow: auto;
                padding: 50px 20px;
            }
            
            .providers-container {
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .providers-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 30px;
            }
            
            .providers-title {
                font-size: 24px;
                color: #fff;
                font-weight: 700;
            }
            
            .close-providers {
                background: none;
                border: none;
                color: #fff;
                font-size: 24px;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .close-providers:hover {
                color: #d09ae9;
                transform: rotate(90deg);
            }
            
            .providers-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 10px;
            }

            .provider-item {
                overflow: hidden;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background: rgba(255, 255, 255, 0.04);
                border-radius: var(--border-radius-sm);
                padding: 10px;
                cursor: pointer;
                transition: all 0.3s;
                height: 80px;
            }

            .provider-item:hover {
                background: rgba(255, 255, 255, 0.18);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }

            .provider-item img {
                max-width: 100%;
                max-height: 100%;
                filter: grayscale(0.9);
                transition: all 0.3s;
            }

            .provider-item:hover img {
                filter: grayscale(0);
            }
            
            .bonus-cards {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                margin-top: 30px;
            }
            
            .bonus-card {
                background: linear-gradient(135deg, rgba(57, 50, 83, 0.9) 0%, rgba(30, 33, 47, 0.9) 100%);
                border-radius: var(--border-radius);
                padding: 20px;
                position: relative;
                overflow: hidden;
                box-shadow: var(--box-shadow);
                transition: all 0.3s;
                display: flex;
                flex-direction: column;
            }
            
            .bonus-card:hover {
                transform: translateY(-5px);
            }
            
            .bonus-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('/img/bg/bonus-pattern.png') center/cover repeat;
                opacity: 0.05;
            }
            
            .bonus-icon {
                width: 60px;
                height: 60px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .bonus-icon i {
                font-size: 30px;
                color: #f7d93f;
            }
            
            .bonus-title {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #fff;
            }
            
            .bonus-description {
                color: rgba(255, 255, 255, 0.8);
                margin-bottom: 15px;
                flex-grow: 1;
            }
            
            .bonus-btn {
                background: var(--gradient-button);
                color: white;
                border: none;
                border-radius: var(--border-radius-sm);
                padding: 10px 15px;
                font-weight: 600;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s;
                text-transform: uppercase;
                font-size: 14px;
            }
            
            .bonus-btn:hover {
                background: var(--gradient-button-hover);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .winners-section {
                margin-top: 40px;
            }
            
            .winners-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }
            
            .winner-card {
                background: rgba(30, 33, 47, 0.7);
                border-radius: var(--border-radius);
                padding: 15px;
                display: flex;
                align-items: center;
                box-shadow: var(--box-shadow);
                transition: all 0.3s;
            }
            
            .winner-card:hover {
                background: rgba(57, 50, 83, 0.8);
                transform: translateY(-3px);
            }
            
            .winner-avatar {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                margin-right: 15px;
                object-fit: cover;
                border: 2px solid rgba(255, 255, 255, 0.2);
            }
            
            .winner-info {
                flex: 1;
            }
            
            .winner-name {
                font-weight: 600;
                margin-bottom: 5px;
                font-size: 15px;
            }
            
            .winner-game {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.7);
                margin-bottom: 5px;
            }
            
            .winner-amount {
                font-size: 16px;
                font-weight: 700;
                color: #f7d93f;
            }

            .testimonials {
                margin-top: 40px;
                position: relative;
                padding: 30px 0;
            }
            
            .testimonial-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .testimonial-card {
                background: rgba(30, 33, 47, 0.7);
                border-radius: var(--border-radius);
                padding: 20px;
                position: relative;
                box-shadow: var(--box-shadow);
            }
            
            .testimonial-content {
                position: relative;
                padding-left: 30px;
                margin-bottom: 15px;
            }
            
            .testimonial-content::before {
                content: '"';
                position: absolute;
                left: 0;
                top: -10px;
                font-size: 60px;
                line-height: 1;
                color: rgba(255, 255, 255, 0.2);
                font-family: serif;
            }
            
            .testimonial-author {
                display: flex;
                align-items: center;
            }
            
            .testimonial-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                margin-right: 10px;
                object-fit: cover;
            }
            
            .testimonial-name {
                font-weight: 600;
                font-size: 14px;
            }
            
            .testimonial-date {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.6);
            }
            
            .payment-methods {
                margin-top: 40px;
                background: rgba(30, 33, 47, 0.7);
                border-radius: var(--border-radius);
                padding: 20px;
                box-shadow: var(--box-shadow);
            }
            
            .payment-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                margin-top: 20px;
            }
            
            .payment-item {
                width: 70px;
                height: 40px;
                margin: 10px;
                background: rgba(255, 255, 255, 0.9);
                border-radius: var(--border-radius-sm);
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 5px;
            }
            
            .payment-item img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .footer {
                margin-top: 60px;
                background: rgba(30, 33, 47, 0.8);
                border-radius: var(--border-radius) var(--border-radius) 0 0;
                padding: 40px 0 20px;
                position: relative;
            }
            
            .footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('/img/bg/footer-bg.jpg') center/cover no-repeat;
                opacity: 0.05;
                z-index: -1;
            }

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

            .footer-col {
                color: var(--text-color);
            }

            .footer-title {
                font-size: 18px;
                font-weight: 700;
                margin-bottom: 20px;
                color: #fff;
                text-transform: uppercase;
                position: relative;
                padding-bottom: 10px;
            }
            
            .footer-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 50px;
                height: 3px;
                background: linear-gradient(90deg, #a16bc2 0%, #2b4a64 100%);
            }

            .footer-logo {
                display: flex;
                align-items: center;
                margin-bottom: 20px;
            }

            .footer-logo img {
                width: 80px;
                margin-right: 15px;
            }

            .footer-logo-text {
                font-size: 20px;
                font-weight: 900;
                color: #fbf2ff;
                text-transform: uppercase;
                text-shadow: 2px 2px 2px #763a87;
            }

            .footer-text {
                color: rgba(255, 255, 255, 0.7);
                margin-bottom: 20px;
                font-size: 14px;
                line-height: 1.6;
            }

            .social-links {
                display: flex;
                gap: 10px;
            }

            .social-link {
                width: 36px;
                height: 36px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                transition: all 0.3s;
            }

            .social-link:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: translateY(-3px);
            }

            .footer-list {
                list-style: none;
            }

            .footer-list li {
                margin-bottom: 10px;
            }

            .footer-list a {
                color: rgba(255, 255, 255, 0.7);
                transition: all 0.3s;
                display: flex;
                align-items: center;
            }
            
            .footer-list a i {
                margin-right: 8px;
                font-size: 12px;
            }

            .footer-list a:hover {
                color: #fff;
                transform: translateX(5px);
            }

            .footer-bottom {
                margin-top: 40px;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                color: rgba(255, 255, 255, 0.6);
                font-size: 12px;
            }

            .footer-bottom-left {
                display: flex;
                align-items: center;
            }

            .footer-bottom-links {
                display: flex;
                gap: 20px;
            }

            .footer-bottom-links a {
                color: rgba(255, 255, 255, 0.6);
                transition: all 0.3s;
            }

            .footer-bottom-links a:hover {
                color: #fff;
            }

            .footer-licence {
                display: flex;
                gap: 20px;
                align-items: center;
            }

            .footer-licence img {
                height: 40px;
            }
            
            .seo-content {
                margin-top: 40px;
                padding: 20px;
                background: rgba(30, 33, 47, 0.7);
                border-radius: var(--border-radius);
                color: rgba(255, 255, 255, 0.8);
                font-size: 14px;
                line-height: 1.6;
            }
            
            .seo-content h2 {
                font-size: 22px;
                font-weight: 700;
                margin: 25px 0 15px;
                color: #fff;
            }
            
            .seo-content h2:first-child {
                margin-top: 0;
            }
            
            .seo-content h3 {
                font-size: 18px;
                font-weight: 600;
                margin: 20px 0 10px;
                color: #fff;
            }
            
            .seo-content p {
                margin-bottom: 15px;
            }
            
            .seo-content ul {
                margin-left: 20px;
                margin-bottom: 15px;
            }
            
            .seo-content li {
                margin-bottom: 5px;
            }


            .mobile-menu {
                display: none;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: linear-gradient(90deg, rgba(43, 25, 49, 0.99) 0, rgba(32, 26, 18, 0.98) 100%);
                border-top: 1px solid #191f33;
                z-index: 1000;
                box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            }

            .mobile-menu-grid {
                display: flex;
                align-items: center;
            }

            .mobile-menu-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 10px 5px;
                color: #cbcbcd;
                flex: 1;
                text-align: center;
                font-size: 12px;
                border-right: 1px solid rgba(0, 0, 0, 0.3);
                transition: all 0.3s;
            }

            .mobile-menu-item:last-child {
                border-right: none;
            }
            
            .mobile-menu-item:hover, .mobile-menu-item.active {
                color: #fff;
                background: rgba(255, 255, 255, 0.1);
            }

            .mobile-menu-item i {
                font-size: 20px;
                margin-bottom: 5px;
            }

            .mobile-menu-item img {
                width: 24px;
                height: 24px;
                margin-bottom: 5px;
                opacity: 0.9;
            }
            
            .top-games-badge {
                position: fixed;
                bottom: 80px;
                right: 20px;
                width: 60px;
                height: 60px;
                background: var(--gradient-button);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
                z-index: 999;
                animation: pulse 2s infinite;
                cursor: pointer;
                display: none;
            }
            
            .top-games-badge i {
                font-size: 30px;
            }


            @media (max-width: 1200px) {
                .games-grid {
                    grid-template-columns: repeat(4, 1fr);
                }
                
                .winners-grid, .testimonial-container {
                    grid-template-columns: repeat(3, 1fr);
                }
                
                .bonus-cards {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            @media (max-width: 992px) {
                .games-grid, .winners-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
                
                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                }
                
                .footer-col:first-child {
                    grid-column: 1 / -1;
                }
                
                .bonus-cards, .testimonial-container {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .hero-title {
                    font-size: 36px;
                }
                
                .hero-subtitle {
                    font-size: 18px;
                }
            }

            @media (max-width: 768px) {
                .games-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .winners-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .search-panel {
                    flex-direction: column;
                    gap: 15px;
                }
                
                .search-box {
                    max-width: 100%;
                    margin-left: 0;
                }
                
                .nav-list {
                    overflow-x: auto;
                    flex-wrap: nowrap;
                    padding-bottom: 10px;
                    margin-bottom: 10px;
                    -webkit-overflow-scrolling: touch;
                    scrollbar-width: none;
                }
                
                .nav-list::-webkit-scrollbar {
                    display: none;
                }
                
                .nav-item {
                    flex: 0 0 auto;
                }
                
                .testimonial-container {
                    grid-template-columns: 1fr;
                }
                
                .hero-features {
                    flex-direction: column;
                    align-items: center;
                }
                
                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                
                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                    gap: 15px;
                }
                
                .footer-bottom-left, .footer-licence {
                    justify-content: center;
                }
                
                .mobile-menu {
                    display: block;
                }
                
                .container {
                    padding-bottom: 70px;
                }
                
                .top-games-badge {
                    display: flex;
                }
            }

            @media (max-width: 576px) {
                .games-grid, .winners-grid, .bonus-cards {
                    grid-template-columns: 1fr;
                }
                
                .hero-title {
                    font-size: 28px;
                }
                
                .hero-subtitle {
                    font-size: 16px;
                }
                
                .hero-content {
                    padding: 30px 20px;
                }
                
                .banner {
                    flex-direction: column;
                    text-align: center;
                    gap: 15px;
                }
                
                .banner-btn {
                    margin-left: 0;
                }
                
                .search-actions {
                    width: 100%;
                    justify-content: space-between;
                }
                
                .providers-btn, .filter-btn {
                    flex: 1;
                }
                
                .providers-grid {
                    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
                }
                
                .auth-buttons {
                    gap: 5px;
                }
                
                .auth-btn {
                    padding: 8px 12px;
                    font-size: 14px;
                }
                
                .logo-text {
                    font-size: 18px;
                }
                
                .section-title {
                    font-size: 20px;
                }
                
                .categories-tabs {
                    overflow-x: auto;
                    flex-wrap: nowrap;
                    padding-bottom: 10px;
                    -webkit-overflow-scrolling: touch;
                    scrollbar-width: none;
                }
                
                .categories-tabs::-webkit-scrollbar {
                    display: none;
                }
                
                .category-tab {
                    flex: 0 0 auto;
                }
                
                .footer-bottom-links {
                    flex-direction: column;
                    gap: 10px;
                    align-items: center;
                }
                
                .footer-logo {
                    flex-direction: column;
                    text-align: center;
                }
                
                .footer-logo img {
                    margin-right: 0;
                    margin-bottom: 10px;
                }
                
                .social-links {
                    justify-content: center;
                }
            }