﻿:root { --bg-dark: #090d16; --primary: #38bdf8; --secondary: #818cf8; --glass-bg: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); --text-main: #f8fafc; --text-muted: #94a3b8; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); min-height: 100vh; display: flex; justify-content: center; align-items: center; overflow-x: hidden; position: relative; padding: 20px; }
.bg-blobs { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; animation: float 18s infinite alternate ease-in-out; }
.blob-1 { width: 400px; height: 400px; background: #0284c7; top: -100px; left: -100px; }
.blob-2 { width: 450px; height: 450px; background: #4f46e5; bottom: -150px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: #0d9488; top: 40%; left: 50%; transform: translate(-50%, -50%); animation-delay: -10s; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 40px) scale(1.1); } }
.container { width: 100%; max-width: 850px; z-index: 1; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 28px; padding: 40px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); text-align: center; position: relative; }
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.logo-text span { color: var(--primary); }
.badge { background: rgba(56, 189, 248, 0.1); color: var(--primary); border: 1px solid rgba(56, 189, 248, 0.2); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.map-container { width: 100%; max-width: 600px; margin: 0 auto 20px; }
.world-map { width: 100%; height: auto; opacity: 0.8; }
.pulse-point { fill: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0% { r: 4px; opacity: 1; } 50% { r: 8px; opacity: 0.4; } 100% { r: 4px; opacity: 1; } }
h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
p { color: var(--text-muted); font-size: 1rem; max-width: 550px; margin: 0 auto 35px; line-height: 1.6; }
.countdown-section { margin-bottom: 40px; }
.timer { display: flex; justify-content: center; gap: 15px; }
.time-box { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); padding: 15px 20px; border-radius: 16px; min-width: 85px; }
.time-box span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--text-main); }
.time-box label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.button-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { display: flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.btn-whatsapp { background: #25D366; color: #000; }
.btn-whatsapp:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
.btn-contact { background: rgba(255, 255, 255, 0.05); color: var(--text-main); border: 1px solid var(--glass-border); }
.btn-contact:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
@media (max-width: 600px) { .glass-card { padding: 25px 20px; } h1 { font-size: 1.75rem; } .timer { gap: 8px; } .time-box { padding: 10px 12px; min-width: 65px; } .time-box span { font-size: 1.3rem; } .button-group { flex-direction: column; } .btn { width: 100%; justify-content: center; } }
