:root { --bgDark: #070d19; --bgCard: #0d1526; --textPrimary: #ffffff; --textSecondary: #94a3b8; --accentPurple: #9244ee; --accentBlue: #3b82f6; --fontFamily: 'Inter', sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }
body { font-family: var(--fontFamily); background-color: var(--bgDark); color: var(--textPrimary); line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
.container { width: 100%; max-width: clamp(480px, 95%, 1400px); margin: 0 auto; padding: 0 15px; }
.flexBox { display: flex; }
.alignCenter { align-items: center; }
.justifyBetween { justify-content: space-between; }

.logoWrapper { position: relative; width: 30px; height: 30px; margin-right: 8px; }
.skeleton-loader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #162033; border-radius: 6px; z-index: 2; transition: opacity 0.3s ease; overflow: hidden; }
.skeleton-loader::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 100% { transform: translateX(100%); } }

header { background: rgba(7, 13, 25, 0.85); backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); }
.headerLogo { width: 100%; height: 100%; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); object-fit: cover; }
.brandName { font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: 0.5px; }

.langWrapper { position: relative; cursor: pointer; background: rgba(255,255,255,0.05); padding: 5px 8px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 5px; z-index: 1010; }
.flagIcon { width: 22px; height: 15px; border-radius: 2px; object-fit: cover; display: block; }
.langDropdown { position: absolute; top: calc(100% + 10px); right: 0; background: #0d1526; border: 1px solid #1a253a; border-radius: 12px; width: 180px; padding: 8px; display: none; box-shadow: 0 15px 40px rgba(0,0,0,0.6); z-index: 1020; }
.langDropdown.show { display: block; animation: slideUp 0.2s ease forwards; }
.langItem { padding: 10px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; color: var(--textSecondary); display: flex; align-items: center; gap: 12px; transition: 0.2s; cursor: pointer; }
.langItem:hover { background: rgba(59, 130, 246, 0.1); color: #fff; }
.flagSmall { width: 20px; height: 13px; border-radius: 2px; object-fit: cover; }

.btnDaftar { background: linear-gradient(135deg, #3b82f6 0%, #9244ee 100%); color: white; padding: 8px 16px; border-radius: 10px; font-size: 0.7rem; font-weight: 800; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); }

.floatWA { position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); z-index: 9999; transition: 0.3s; }
.floatWA:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6); }
.waTooltip { position: absolute; right: 70px; background: #1a253a; color: white; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: 0.3s; pointer-events: none; border: 1px solid rgba(255,255,255,0.1); }
.floatWA:hover .waTooltip { opacity: 1; transform: translateX(0); }

footer { margin-top: 80px; padding: 60px 0 30px; background: #050a14; border-top: 1px solid rgba(255,255,255,0.03); }
.footerGrid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .footerGrid { grid-template-columns: 2fr 1fr 1fr; } }
.footerTitle { color: var(--accentBlue); font-size: 0.85rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.footerLink { display: block; color: var(--textSecondary); font-size: 0.85rem; margin-bottom: 12px; transition: 0.2s; }
.footerLink:hover { color: #fff; padding-left: 5px; }
.socialWrapper { display: flex; gap: 10px; }
.socialBtn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--textSecondary); font-size: 1.1rem; transition: 0.3s; }
.socialBtn:hover { border-color: var(--accentBlue); color: var(--accentBlue); transform: translateY(-5px); background: rgba(59, 130, 246, 0.1); }

.paymentBadgeWrapper { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 25px; }
.pBadge { font-size: 0.65rem; font-weight: 900; color: #fff; background: #0d1526; border: 1px solid #1e293b; padding: 6px 14px; border-radius: 8px; animation: glowPulse 3s infinite; }
@keyframes glowPulse { 0%, 100% { border-color: #1e293b; } 50% { border-color: var(--accentBlue); box-shadow: 0 0 10px rgba(59, 130, 246, 0.2); } }

.copyText { font-size: 0.7rem; color: #334155; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
