@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');
        
        :root {
            --gold-primary: #FFD700;
            --gold-secondary: #FFA500;
            --gold-dark: #B8860B;
            --gold-light: #FFF8DC;
            --black-primary: #000000;
            --black-secondary: #0A0A0A;
            --black-soft: #1A1A1A;
            --gray-dark: #2D2D2D;
            --gray-medium: #4A4A4A;
            --gray-light: #808080;
            --white: #FFFFFF;
            --success: #00C851;
            --danger: #ff4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black-primary);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }

        /* Premium Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
            z-index: -1;
        }

        /* Luxury Header */
        .header {
            background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-image {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.5));
            transform: scale(1.05);
        }

        .header-actions {
            display: flex;
            gap: 12px;
        }

        .btn-premium {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-align: center;
            min-width: 65px;
        }

        .btn-login {
            background: transparent;
            color: var(--gold-primary);
            border: 1px solid var(--gold-primary);
        }

        .btn-login:hover {
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .btn-register {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            color: var(--black-primary);
            border: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        }

        /* Main Content */
        .main-content {
            margin-top: 73px;
            min-height: 100vh;
            padding-bottom: 80px;
        }

        /* Promo Banner Slider */
        .promo-slider {
            background: var(--black-soft);
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,215,0,0.1) 50%, rgba(0,0,0,0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .slide-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .slide-subtitle {
            font-size: 14px;
            color: var(--gold-primary);
            margin-bottom: 16px;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        }

        .slide-cta {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            color: var(--black-primary);
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            font-size: 14px;
        }

        .slide-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        }

        .slider-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--gold-primary);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: var(--gold-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            font-size: 18px;
        }

        .slider-nav:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--gold-primary);
        }

        .slider-prev {
            left: 16px;
        }

        .slider-next {
            right: 16px;
        }

        /* Premium Stats */
        .premium-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }

        .stat-number {
            font-size: 22px;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 4px;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Live Gaming Status */
        .live-status {
            background: var(--black-soft);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }

        .live-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(0, 200, 81, 1);
            animation: pulse-live 2s infinite;
        }

        @keyframes pulse-live {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(0, 200, 81, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 200, 81, 0);
            }
        }

        .live-text {
            font-size: 14px;
            color: var(--gold-primary);
            font-weight: 500;
        }

        .player-count {
            font-size: 12px;
            color: var(--gray-light);
        }

        /* Premium Game Filters */
        .filter-section {
            padding: 24px 20px;
            background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-soft) 100%);
        }

        .search-premium {
            position: relative;
            margin-bottom: 20px;
            max-width: 600px;
            margin: 0 auto 20px;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px 14px 48px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            color: var(--white);
            font-size: 14px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--gold-primary);
            background: rgba(255, 215, 0, 0.05);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold-primary);
        }

        .provider-tags {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .provider-tags::-webkit-scrollbar {
            display: none;
        }

        .tag-premium {
            padding: 8px 20px;
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            color: var(--gold-primary);
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .tag-premium:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--gold-primary);
            transform: translateY(-2px);
        }

        .tag-premium.active {
            background: var(--gold-primary);
            color: var(--black-primary);
            border-color: var(--gold-primary);
        }

        /* Prediksi Slot Grid */
        .games-section {
            padding: 32px 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--gold-primary);
        }

        .view-all {
            color: var(--gold-primary);
            font-size: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.3s;
        }

        .view-all:hover {
            gap: 8px;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .game-card-premium {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
            position: relative;
        }

        .game-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .game-card-premium:hover::before {
            transform: translateX(100%);
        }

        .game-card-premium:hover {
            transform: translateY(-4px);
            border-color: var(--gold-primary);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
        }

        .game-visual {
            width: 100%;
            height: 267px;
            background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .game-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(255,215,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
        }

        .hot-indicator {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--danger) 0%, #ff6b6b 100%);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1;
            animation: glow-hot 2s ease-in-out infinite;
        }

        @keyframes glow-hot {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.5); }
            50% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.8); }
        }

        .trending-indicator {
            position: absolute;
            top: 46px;
            left: 12px;
            background: linear-gradient(135deg, #00C851 0%, #00ff63 100%);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1;
            animation: pulse-trending 1.5s ease-in-out infinite;
        }

        @keyframes pulse-trending {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .game-details {
            padding: 16px;
        }

        .rtp-indicator {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            color: var(--gold-primary);
            margin-bottom: 8px;
        }

        .rtp-value {
            color: var(--gold-primary);
            font-weight: 700;
        }

        .game-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--white);
        }

        .game-provider {
            font-size: 13px;
            color: var(--gray-light);
            margin-bottom: 16px;
        }

        .game-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 16px;
        }

        .metric {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--gray-light);
        }

        .metric-icon {
            fill: var(--gold-primary);
            width: 12px;
            height: 12px;
            flex-shrink: 0;
        }

        .pattern-premium {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 16px;
        }

        .pattern-gem {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s;
        }

        .pattern-gem.active {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border-color: var(--gold-primary);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
        }

        .play-btn-premium {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border: none;
            border-radius: 12px;
            color: var(--black-primary);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .play-btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        /* Exclusive Banner */
        .exclusive-banner {
            padding: 0 20px 32px;
            max-width: 600px;
            margin: 0 auto;
        }

        .banner-vip {
            background: linear-gradient(135deg, var(--black-soft) 0%, var(--gray-dark) 100%);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            border-radius: 20px;
            padding: 32px;
            overflow: hidden;
        }

        .banner-vip::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark), var(--gold-primary));
            border-radius: 20px;
            z-index: -1;
            opacity: 0.8;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .vip-badge {
            display: inline-block;
            background: var(--gold-primary);
            color: var(--black-primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .banner-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--white);
        }

        .banner-description {
            color: var(--gray-light);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .cta-premium {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            color: var(--black-primary);
            padding: 12px 32px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
        }

        .cta-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        }

        /* Educational Section Styles */
        .educational-section {
            padding: 32px 20px;
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-soft) 100%);
        }

        .edu-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .edu-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s;
        }

        .edu-card:hover {
            border-color: rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
        }

        .edu-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: var(--gold-primary);
            margin-bottom: 12px;
        }

        .edu-title svg {
            fill: var(--gold-primary);
        }

        .edu-description {
            color: var(--gray-light);
            line-height: 1.6;
            font-size: 14px;
        }

        .pattern-types {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pattern-item {
            background: rgba(255, 215, 0, 0.05);
            border-left: 3px solid var(--gold-primary);
            border-radius: 8px;
            padding: 12px 16px;
        }

        .pattern-item h4 {
            display: flex;
            align-items: center;
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .pattern-item h4 svg {
            fill: var(--gold-primary);
        }

        .pattern-item p {
            color: var(--gray-light);
            font-size: 13px;
            line-height: 1.4;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .tip-item {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            transition: all 0.3s;
        }

        .tip-item:hover {
            border-color: rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        .tip-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .tip-icon svg {
            fill: var(--gold-primary);
        }

        .tip-item h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .tip-item p {
            color: var(--gray-light);
            font-size: 12px;
            line-height: 1.4;
        }

        .warning-card {
            border-color: rgba(255, 68, 68, 0.3);
            background: linear-gradient(135deg, rgba(255, 68, 68, 0.05) 0%, rgba(26, 26, 26, 0.9) 100%);
        }

        .warning-card .edu-title {
            color: #ff6b6b;
        }

        .warning-card .edu-title svg {
            fill: #ff6b6b;
        }

        .warning-content p {
            display: flex;
            align-items: center;
            color: var(--white);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .warning-content p svg {
            fill: #ff6b6b;
        }

        .warning-content ul {
            list-style: none;
            padding: 0;
        }

        .warning-content li {
            color: var(--gray-light);
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 6px;
            padding-left: 16px;
            position: relative;
        }

        .warning-content li::before {
            content: '•';
            color: var(--gold-primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Game Popup Modal */
        .game-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .game-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: linear-gradient(135deg, var(--black-soft) 0%, var(--gray-dark) 100%);
            border: 2px solid var(--gold-primary);
            border-radius: 20px;
            padding: 0;
            max-width: 400px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 215, 0, 0.5);
            color: var(--white);
            font-size: 18px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .modal-close:hover {
            background: rgba(255, 215, 0, 0.2);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: scale(1.1);
        }

        .modal-game-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .modal-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .modal-hot-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--danger) 0%, #ff6b6b 100%);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            animation: glow-hot 2s ease-in-out infinite;
        }

        .modal-trending-badge {
            position: absolute;
            top: 50px;
            left: 12px;
            background: linear-gradient(135deg, #00C851 0%, #00ff63 100%);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            animation: pulse-trending 1.5s ease-in-out infinite;
        }

        .modal-header {
            text-align: center;
            margin: 20px 24px;
        }

        .modal-game-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 8px;
        }

        .modal-provider {
            color: var(--gray-light);
            font-size: 14px;
            margin-bottom: 16px;
        }

        .modal-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 0 24px 20px;
        }

        .modal-stat {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            padding: 12px;
            text-align: center;
        }

        .modal-stat-label {
            font-size: 11px;
            color: var(--gray-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .modal-stat-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--gold-primary);
        }

        .pattern-section {
            margin: 0 24px 20px;
        }

        .section-title-small {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pattern-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .pattern-gem-large {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s;
        }

        .pattern-gem-large.active {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border-color: var(--gold-primary);
            color: var(--black-primary);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            transform: scale(1.05);
        }

        .pattern-info {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            padding: 12px;
            font-size: 13px;
            color: var(--gray-light);
            line-height: 1.4;
        }

        .gacor-section {
            margin: 0 24px 20px;
        }

        .gacor-times {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .gacor-time {
            background: linear-gradient(135deg, rgba(0, 200, 81, 0.1) 0%, rgba(0, 200, 81, 0.05) 100%);
            border: 1px solid rgba(0, 200, 81, 0.3);
            border-radius: 8px;
            padding: 8px 4px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--success);
        }

        .gacor-time.current {
            background: linear-gradient(135deg, var(--success) 0%, #00ff63 100%);
            color: var(--black-primary);
            box-shadow: 0 0 15px rgba(0, 200, 81, 0.4);
            animation: pulse-gacor 2s infinite;
        }

        @keyframes pulse-gacor {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .modal-play-btn {
            width: calc(100% - 48px);
            margin: 0 24px 24px;
            padding: 14px;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border: none;
            border-radius: 12px;
            color: var(--black-primary);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .modal-play-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
        }

        /* Premium Navigation */
        .premium-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            z-index: 999;
        }

        .nav-content {
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 20px;
            color: var(--gray-light);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }

        .nav-item.active {
            color: var(--gold-primary);
        }

        .nav-item.active::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--gold-primary);
        }

        .nav-icon {
            width: 22px;
            height: 22px;
            margin-bottom: 4px;
            fill: currentColor;
        }

        .nav-label {
            font-size: 11px;
            font-weight: 500;
        }

        /* VIP Support */
        .vip-support {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            transition: all 0.3s;
            z-index: 998;
        }

        .vip-support:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        }

        /* Mobile Optimization */
        @media (max-width: 380px) {
            .games-grid {
                grid-template-columns: 1fr;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .edu-card {
                padding: 16px;
            }

            .hero-title {
                font-size: 28px;
            }

            .premium-stats {
                gap: 12px;
            }

            .stat-number {
                font-size: 24px;
            }

            .modal-content {
                width: 95%;
                padding: 20px;
            }

            .modal-stats {
                grid-template-columns: 1fr;
            }
        }
