@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root { 
    --primary: #38bdf8; 
    --bg: #030712; 
    --card-bg: rgba(17, 24, 39, 0.7); 
    --border: rgba(255, 255, 255, 0.08); 
    --text-main: #f8fafc; 
    --text-dim: #94a3b8; 
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg); 
    color: var(--text-main); 
    margin: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    overflow-x: hidden; 
}

.bg-glow { 
    position: fixed; 
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: -2;
    overflow: hidden;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Antigravity Dark Style - Vibrant Glowing Blobs */
.blob {
    position: absolute;
    width: 70vw;
    height: 70vw;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, rgba(3, 7, 18, 0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    transition: transform 0.2s ease-out;
    pointer-events: none;
}

.blob-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(3, 7, 18, 0) 70%);
    width: 90vw;
    height: 90vw;
    right: -15%;
    top: -15%;
    transition: transform 0.3s ease-out;
}

.blob-3 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(3, 7, 18, 0) 70%);
    width: 60vw;
    height: 60vw;
    left: -10%;
    bottom: -10%;
    transition: transform 0.4s ease-out;
}

.card { 
    background: var(--card-bg); 
    backdrop-filter: blur(40px) saturate(180%); 
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border); 
    border-radius: 48px; 
    padding: 60px; 
    max-width: 480px; 
    width: 90%; 
    text-align: center; 
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8); 
    position: relative; 
    z-index: 1; 
}

.logo-shield { 
    width: 80px; 
    height: 80px; 
    fill: var(--primary); 
    margin-bottom: 24px; 
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5)); 
}

h1 { 
    font-weight: 800; 
    font-size: 42px; 
    margin: 0; 
    letter-spacing: -1.5px; 
}

.tagline { 
    color: var(--text-dim); 
    margin: 12px 0 44px 0; 
    font-size: 18px; 
}

.features { 
    text-align: left; 
    margin-bottom: 44px; 
    display: grid; 
    gap: 14px; 
}

.feature { 
    background: rgba(255,255,255,0.03); 
    padding: 14px 22px; 
    border-radius: 16px; 
    font-size: 15px; 
    border: 1px solid rgba(255,255,255,0.02);
}

.price { 
    font-size: 72px; 
    font-weight: 800; 
    margin: 24px 0; 
    letter-spacing: -2px;
}

.currency { 
    font-size: 20px; 
    color: var(--text-dim); 
    margin-left: 6px; 
}

.btn-buy { 
    background: #fff; 
    color: #030712; 
    width: 100%; 
    padding: 22px; 
    border-radius: 20px; 
    font-size: 18px; 
    font-weight: 700; 
    border: none; 
    cursor: pointer; 
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

.btn-buy:hover { 
    background: var(--primary); 
    color: #fff;
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

/* Cookie Banner - Dark Theme */
#cookie-banner { 
    position: fixed; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 600px; 
    background: #111827; 
    border: 1px solid var(--border); 
    border-radius: 24px; 
    padding: 30px; 
    display: none; 
    z-index: 1000; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
}

.cookie-content { 
    margin-bottom: 24px; 
    font-size: 14px; 
    line-height: 1.6; 
    color: var(--text-dim); 
}

.cookie-actions { 
    display: flex; 
    gap: 12px; 
    justify-content: flex-end; 
}

.cookie-btn { 
    padding: 12px 24px; 
    border-radius: 12px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 14px; 
    transition: 0.3s; 
    border: none; 
}

.btn-accept { 
    background: var(--primary); 
    color: #030712; 
}

.btn-reject { 
    background: rgba(255,255,255,0.05); 
    color: var(--text-dim); 
    border: 1px solid var(--border); 
}

.cookie-btn:hover { 
    opacity: 0.9; 
}

.lang-switch { 
    position: absolute; 
    top: 24px; 
    right: 24px; 
    display: flex; 
    gap: 12px; 
}

.lang-btn { 
    background: none; 
    border: 1px solid var(--border); 
    color: var(--text-dim); 
    cursor: pointer; 
    padding: 8px 14px; 
    border-radius: 10px; 
    font-size: 12px; 
}

.lang-btn.active { 
    border-color: var(--primary); 
    color: #fff; 
}
