
        :root {
            --pink: #ff007f;
            --orange: #ff5c00;
            --dark-bg: rgba(92, 87, 87, 0.7);
            --gold: #ffcc00;
            --green: #00cc66;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html, body {
            width: 100%;
            height: 100%;
            margin: 0; padding: 0;
            overflow-x: hidden; overflow-y: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .background-video {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100dvh;
            z-index: -1;
            object-fit: cover;
            filter: brightness(1.25); /* Sedikit lebih cerah, tanpa blur */
            transform: scale(1.03); /* biar pinggirnya lebih mulus */
        }
        
        .overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100dvh;
            background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0) 80%);
            z-index: -1;
        }
        
        .container {
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
            padding: 20px 16px 50px;
            position: relative;
            z-index: 1;
        }
        
        .header {
            text-align: center;
            margin-bottom: 16px;
            margin-top: 20px;
        }
        
        .header h1 {
            font-size: 30px;
            margin-bottom: 6px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.7);
            color: var(--gold);
            font-weight: bold;
        }
        
        .header p {
            font-size: 16px;
            opacity: 0.95;
        }
        
        .disclaimer {
            font-size: 12px;
            opacity: 0.8;
            margin-top: 4px;
        }
        
        .counter {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 12px 0;
            flex-wrap: wrap;
        }
        
        .counter-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 13px;
            backdrop-filter: blur(5px);
        }
        
        .counter-item i {
            margin-right: 5px;
            color: var(--pink);
        }
        
        .age-verification {
            text-align: center;
            margin-bottom: 20px;
            padding: 18px 16px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 16px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .age-verification h2 {
            margin-bottom: 16px;
            font-size: 19px;
            font-weight: 600;
        }
        
        .verification-buttons {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .verification-buttons a {
            text-decoration: none;
            flex: 1;
            min-width: 140px;
        }
        
        .verification-buttons button {
            padding: 16px 24px;
            border: none;
            border-radius: 30px;
            font-size: 17px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 6px 16px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
            animation: pulse 2.5s infinite ease-in-out;
        }
        
        .verification-buttons button:after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.6s;
        }
        
        .verification-buttons button:hover:after { left: 100%; }
        
        .verification-buttons button:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0,0,0,0.6);
        }
        
        .yes {
            background: linear-gradient(45deg, var(--green), #00ff80);
            color: white;
        }
        
        .no {
            background: linear-gradient(45deg, #555, #999);
            color: white;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 14px;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 10px;
            border-radius: 14px;
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .trust-badge i { color: var(--gold); }
        
        .footer {
            text-align: center;
            font-size: 11px;
            opacity: 0.7;
            margin-top: 12px;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.04); }
        }
        
        @media (max-width: 480px) {
            .container { padding: 16px 12px 60px; }
            .header h1 { font-size: 26px; }
            .verification-buttons { flex-direction: column; gap: 12px; }
            .counter-item { font-size: 12px; padding: 5px 10px; }
        }
