        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1d2e;
            color: #ffffff;
        }

        /* Header */
        .header {
            background: #0f1117;
            padding: 20px 0;
            border-bottom: 1px solid #2a2d3e;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .header-badges {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .badge-icon {
            width: 24px;
            height: 24px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #e63946;
        }

        /* Hero Section */
        .hero-section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 30px;
            grid-template-columns: 1fr 440px;
            gap: 30px;
            min-height: calc(100vh - 100px);
        }

        .hero-main {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3a5f 0%, #0f1d2e 100%);
            display: flex;
            align-items: flex-end;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px;
            width: 100%;
        }

        .hero-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-title {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            opacity: 0.95;
            text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
        }

        /* Betting Cards Sidebar */
        .betting-cards {
            gap: 20px;
            overflow-y: auto;
            padding-right: 10px;
                            display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }

        .betting-cards::-webkit-scrollbar {
            width: 6px;
        }

        .betting-cards::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .betting-cards::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

        .betting-card {
            background: linear-gradient(135deg, #2a5c3e 0%, #1a3d28 100%);
            border-radius: 12px;
            padding: 25px;
            display: flex;
            gap: 20px;
            align-items: center;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .betting-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .betting-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .betting-card:hover::before {
            opacity: 1;
        }

        /* Different card colors */
        .betting-card.green {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        }

        .betting-card.cyan {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        .betting-card.yellow {
            background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
        }

        .betting-card.dark {
            background: linear-gradient(135deg, #404040 0%, #262626 100%);
        }

        .betting-card.red {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        }

        .betting-card.blue {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .card-logo {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            color: #000;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .card-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .card-subtitle {
            font-size: 13px;
            opacity: 0.95;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .card-features {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s;
        }

        .feature-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .card-button {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-section {
                grid-template-columns: 1fr;
            }

            .betting-cards {
                max-height: none;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .hero-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 30px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-description {
                font-size: 16px;
            }

            .betting-card {
                flex-direction: column;
                text-align: center;
            }

            .header-badges {
                display: none;
            }
        }

        /* Live indicator animation */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .live-indicator {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
            display: inline-block;
            margin-right: 6px;
        }

        /* Responsible Gaming Section */
        .responsible-gaming-section {
            background: #e8e8e8;
            padding: 80px 30px;
            margin-top: 80px;
        }

        .responsible-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .responsible-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1d2e;
            margin-bottom: 25px;
        }

        .responsible-intro {
            font-size: 16px;
            line-height: 1.8;
            color: #2a2d3e;
            margin-bottom: 40px;
            max-width: 1200px;
        }

        .responsible-subtitle {
            font-size: 28px;
            font-weight: 700;
            color: #1a1d2e;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .responsible-text {
            font-size: 16px;
            line-height: 1.8;
            color: #2a2d3e;
            margin-bottom: 40px;
            max-width: 1200px;
        }

        .organizations-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .organization-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 40px;
            align-items: start;
            border: 1px solid #d1d5db;
        }

        .org-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #f9fafb;
            border-radius: 8px;
            text-align: center;
            color: #1a1d2e;
            line-height: 1.2;
            height: fit-content;
        }

        .gamcare-logo {
            gap: 10px;
            flex-direction: row;
        }

        .org-content {
            flex: 1;
        }

        .org-description {
            font-size: 15px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 20px;
        }

        .org-list {
            list-style: none;
            padding: 0;
        }

        .org-list li {
            font-size: 15px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .org-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #6d28d9;
            font-weight: 700;
        }

        .org-list strong {
            color: #1a1d2e;
        }

        /* Responsive Responsible Gaming Section */
        @media (max-width: 968px) {
            .organization-card {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .org-logo {
                margin: 0 auto;
            }

            .responsible-title {
                font-size: 28px;
            }

            .responsible-subtitle {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .responsible-gaming-section {
                padding: 50px 20px;
            }

            .organization-card {
                padding: 25px;
            }

            .org-description, .org-list li {
                font-size: 14px;
            }
        }


        /* Footer Styles */
        .footer-section {
            background: #1a1d2e;
            border-top: 3px solid #2a2d3e;
            padding: 60px 30px 40px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        /* Regulatory Section */
        .footer-regulatory {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #2a2d3e;
                justify-content: center;
        }

        .eeep-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .eeep-box {
            width: 70px;
            height: 70px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .eeep-lines {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
        }

        .eeep-lines span {
            height: 8px;
            background: #1a1d2e;
            display: block;
            border-radius: 2px;
        }

        .eeep-lines span:nth-child(1) {
            width: 100%;
        }

        .eeep-lines span:nth-child(2) {
            width: 85%;
        }

        .eeep-lines span:nth-child(3) {
            width: 70%;
        }

        .eeep-text {
            font-size: 11px;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .regulatory-text {
            font-size: 13px;
            line-height: 1.6;
            color: #fff;
            font-weight: 500;
        }

        /* Badges Row */
        .footer-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
            padding: 30px 0;
            flex-wrap: wrap;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .footer-badge:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .age-badge {
            font-size: 32px;
            font-weight: 900;
        }

        .age-number {
            padding: 5px 15px;
            border: 3px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .eeep-badge {
            padding: 20px;
        }

        .mini-eeep {
            display: flex;
            flex-direction: column;
            gap: 3px;
            width: 30px;
        }

        .mini-eeep span {
            height: 6px;
            background: #fff;
            border-radius: 2px;
        }

        .mini-eeep span:nth-child(1) {
            width: 100%;
        }

        .mini-eeep span:nth-child(2) {
            width: 85%;
        }

        .mini-eeep span:nth-child(3) {
            width: 70%;
        }

        .keoea-badge {
            font-size: 32px;
            font-weight: 700;
        }

        .keoea-text {
            letter-spacing: 2px;
        }

        .gamble-badge {
            font-size: 14px;
            line-height: 1.2;
            text-align: center;
        }

        .gamcare-badge {
            gap: 8px;
        }

        /* Footer Navigation */
        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 1px solid #2a2d3e;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fff;
            transition: width 0.3s;
        }

        .footer-link:hover {
            color: #00d4ff;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        /* License Information */
        .footer-license {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            padding: 20px 0;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-regulatory {
                flex-direction: column;
                text-align: center;
                    justify-content: center;
            }

            .footer-badges {
                gap: 20px;
            }

            .footer-badge {
                padding: 12px 20px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .regulatory-text {
                font-size: 12px;
            }
        }