        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #1a1a2e;
        }

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

        /* Header Navigation */
        .header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            border-bottom: 1px solid #4b2e83;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #d4af37;
        }

        .nav-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn-login {
            color: #ffffff;
            text-decoration: none;
            padding: 8px 20px;
            border: 1px solid #4b2e83;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: #4b2e83;
        }

        .btn-register {
            background: #d4af37;
            color: #1a1a2e;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-register:hover {
            background: #c19b2a;
            transform: translateY(-1px);
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #4b2e83 100%);
            padding: 140px 20px 80px;
            text-align: center;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .accent {
            color: #d4af37;
        }

        .page-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Content Section */
        .content-section {
            padding: 80px 20px;
            background: #1a1a2e;
        }

        .content-title {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .content-subtitle {
            font-size: 1.8rem;
            color: #d4af37;
            margin: 40px 0 20px;
            border-left: 4px solid #d4af37;
            padding-left: 15px;
        }

        .games-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .games-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-link {
            color: #d4af37;
            text-decoration: none;
            font-weight: bold;
        }

        .content-link:hover {
            text-decoration: underline;
        }

        /* Game Categories */
        .categories-section {
            margin: 40px 0;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .category-card {
            background: rgba(75, 46, 131, 0.3);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #4b2e83;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .category-card h3 {
            color: #d4af37;
            margin-bottom: 15px;
        }

        .game-count {
            background: #d4af37;
            color: #1a1a2e;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 15px;
        }

        /* Popular Games */
        .popular-games {
            margin: 40px 0;
        }

        .games-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(75, 46, 131, 0.3);
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
        }

        .games-table th {
            background: #4b2e83;
            color: #d4af37;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }

        .games-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #4b2e83;
        }

        .games-table tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .rtp-high {
            color: #4CAF50;
            font-weight: bold;
        }

        .rtp-medium {
            color: #FFC107;
            font-weight: bold;
        }

        .btn-play {
            background: #d4af37;
            color: #1a1a2e;
            padding: 6px 12px;
            text-decoration: none;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-play:hover {
            background: #c19b2a;
        }

        /* Game Providers */
        .providers-section {
            background: rgba(212, 175, 55, 0.1);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 4px solid #d4af37;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .provider-card {
            background: rgba(75, 46, 131, 0.5);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }

        .provider-card img {
            max-width: 100px;
            height: 40px;
            object-fit: contain;
            margin-bottom: 10px;
        }

        /* Advantages Section */
        .advantages-comparison {
            margin: 40px 0;
            overflow-x: auto;
        }

        .advantages-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(75, 46, 131, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        .advantages-table th {
            background: #4b2e83;
            color: #d4af37;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }

        .advantages-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #4b2e83;
        }

        .advantages-table tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .advantage-check {
            color: #4CAF50;
            font-weight: bold;
        }

        .advantage-cross {
            color: #F44336;
            font-weight: bold;
        }

        /* Featured Games */
        .featured-games {
            margin: 40px 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .featured-card {
            background: rgba(75, 46, 131, 0.3);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #4b2e83;
            transition: transform 0.3s ease;
        }

        .featured-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
        }

        .game-image {
            height: 180px;
            background: linear-gradient(135deg, #4b2e83 0%, #1a1a2e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .game-info {
            padding: 20px;
        }

        .game-info h4 {
            color: #d4af37;
            margin-bottom: 10px;
        }

        .game-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-games {
            background: linear-gradient(135deg, #4b2e83 0%, #1a1a2e 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 50px;
            border: 2px solid #d4af37;
        }

        .cta-games h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .btn-primary {
            background: #d4af37;
            color: #1a1a2e;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #d4af37;
            display: inline-block;
            margin-top: 20px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        /* Footer */
        .footer {
            background: #0d0d1a;
            padding: 50px 20px 20px;
            border-top: 2px solid #4b2e83;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

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

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

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .address {
            margin-top: 15px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-regulatory {
            border-top: 1px solid #4b2e83;
            padding-top: 30px;
            text-align: center;
        }

        .responsible-gaming-links {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .responsible-gaming-links a {
            color: #d4af37;
            text-decoration: none;
        }

        .responsible-gaming-links a:hover {
            text-decoration: underline;
        }

        .age-warning {
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .age-warning a {
            color: #d4af37;
            text-decoration: none;
        }

        .age-warning a:hover {
            text-decoration: underline;
        }

        .footer-copyright {
            border-top: 1px solid #4b2e83;
            padding-top: 20px;
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: #d4af37;
            text-decoration: none;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
            }
            
            .content-title {
                font-size: 2rem;
            }
            
            .content-subtitle {
                font-size: 1.5rem;
            }
            
            .categories-grid, .featured-grid {
                grid-template-columns: 1fr;
            }
            
            .providers-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            
            .games-table {
                font-size: 0.9rem;
            }
            
            .game-stats {
                flex-direction: column;
                gap: 5px;
            }
        }

        @media (max-width: 480px) {
            .games-table {
                font-size: 0.8rem;
            }
            
            .games-table th, .games-table td {
                padding: 8px 10px;
            }
            
            .provider-card {
                padding: 10px;
            }
        }