
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #135439;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            background: #104C33;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
            overflow-x: hidden;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-shrink: 0;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-register {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-register:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-login {
            background: #2563eb;
            color: #ffffff;
        }

        .btn-login:hover {
            background: #1d4ed8;
        }

        .providers-section {
            padding: 2rem 0;
            background: #104C33;
            overflow-x: hidden;
        }

        .providers-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .providers-grid.hidden {
            display: none;
        }

        .provider-card {
            background: #435c85;
            border-radius: 8px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 100px;
            overflow: hidden;
        }

        .provider-card:hover {
            transform: translateY(-3px);
            background: #2a3649;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .provider-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1.5rem;
            filter: grayscale(100%) brightness(1.2);
            transition: filter 0.3s;
        }

        .provider-card:hover img {
            filter: grayscale(0%) brightness(1);
        }

        .expand-btn {
            width: 100%;
            padding: 1rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #94a3b8;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .expand-btn:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .expand-btn svg {
            transition: transform 0.3s;
        }

        .expand-btn.expanded svg {
            transform: rotate(180deg);
        }

        .bonus-banner {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
        }

        .bonus-card {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
            width: 100%;
        }

        .bonus-card h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .bonus-card p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .btn-bonus {
            background: #ffffff;
            color: #f97316;
            padding: 0.9rem 2.5rem;
            font-weight: 700;
        }

        .btn-bonus:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        .games-section {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .games-grid.hidden {
            display: none;
        }

        .game-card {
            background: #1e293b;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .game-image {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        }

        .game-info {
            padding: 0.75rem;
        }

        .game-title {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .game-provider {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .info-icon {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 20px;
            height: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: #ffffff;
        }

        .search-section {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: flex;
            gap: 1rem;
            width: 100%;
        }

        .search-box {
            flex: 1;
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 0;
        }

        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1rem;
            outline: none;
        }

        .search-box input::placeholder {
            color: #64748b;
        }

        .filter-btn {
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 1rem 2rem;
        }

        .filter-btn:hover {
            background: #2a3649;
        }

        .content-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            width: 100%;
        }

        .content-box {
            background: #1e293b;
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
        }

        .content-box h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .content-box h3 {
            font-size: 1.3rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .content-box p {
            color: #94a3b8;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .footer {
            background: #0a1525;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-logos {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-logo {
            height: 45px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-menu a:hover {
            color: #94a3b8;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .payment-icon {
            height: 30px;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .payment-icon:hover {
            opacity: 1;
        }

        .footer-text {
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.8;
            margin-top: 2rem;
        }

        .footer-text a {
            color: #3b82f6;
            text-decoration: none;
        }

        .footer-text a:hover {
            text-decoration: underline;
        }

        .copyright {
            text-align: center;
            padding: 2rem 0 1rem;
            color: #475569;
            font-size: 0.85rem;
        }

        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .providers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }

            .logo img {
                height: 30px;
            }

            .games-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.75rem;
            }

            .providers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .providers-container {
                padding: 0 1rem;
            }

            .games-section {
                padding: 0 1rem;
            }

            .bonus-banner {
                padding: 0 1rem;
            }

            .search-section {
                padding: 0 1rem;
            }

            .content-section {
                padding: 0 1rem;
            }

            .content-box {
                padding: 1.5rem;
            }

            .bonus-card {
                padding: 1.5rem;
            }

            .bonus-card h2 {
                font-size: 1.3rem;
            }

            .nav-buttons {
                gap: 0.4rem;
            }

            .btn {
                padding: 0.5rem 0.7rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 0.75rem;
            }

            .logo img {
                height: 28px;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .providers-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 0.5rem;
            }

            .providers-container {
                padding: 0 0.75rem;
            }

            .games-section {
                padding: 0 0.75rem;
            }

            .bonus-banner {
                padding: 0 0.75rem;
            }

            .search-section {
                padding: 0 0.75rem;
                flex-direction: column;
            }

            .content-section {
                padding: 0 0.75rem;
            }

            .content-box {
                padding: 1rem;
            }

            .bonus-card {
                padding: 1.25rem;
            }

            .bonus-card h2 {
                font-size: 1.1rem;
            }

            .nav-buttons {
                gap: 0.3rem;
            }

            .btn {
                padding: 0.4rem 0.6rem;
                font-size: 0.75rem;
            }

            .footer-container {
                padding: 0 0.75rem;
            }
        }
 