/* Base Settings */
:root {
    --bg-color: #050510;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #00f2ff; /* Cyan */
    --secondary: #4d79ff; /* Blue */
    --danger: #ff4d4d; /* Red */
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Matrix Canvas */
canvas#matrix { position: fixed; top: 0; left: 0; z-index: 0; opacity: 0.25; }
.main-wrapper { position: relative; z-index: 1; }

/* --- INTRO OVERLAY --- */
#intro-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    text-align: center; font-family: 'Rajdhani', sans-serif;
    transition: opacity 0.8s ease-out;
}
.intro-content h1 { font-size: 3rem; color: #fff; letter-spacing: 5px; margin-bottom: 10px; text-shadow: 0 0 20px rgba(255,255,255,0.5); }
.intro-content p { color: var(--primary); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 30px; }
.headphone-hint { font-size: 0.9rem !important; color: #666 !important; margin-bottom: 40px !important; font-style: italic; }
.lock-icon { font-size: 4rem; color: var(--primary); margin-bottom: 20px; animation: pulse 2s infinite; }
.glitch-btn-intro {
    background: transparent; color: var(--primary);
    font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 800;
    padding: 15px 40px; border: 2px solid var(--primary);
    cursor: pointer; text-transform: uppercase; letter-spacing: 3px;
    transition: 0.3s; box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}
.glitch-btn-intro:hover { background: var(--primary); color: #000; box-shadow: 0 0 40px rgba(0, 242, 255, 0.8); transform: scale(1.05); }

/* --- AI GLITCH WIDGET --- */
.glitch-toast {
    position: fixed; bottom: 20px; right: 20px; width: 340px;
    background: rgba(10, 10, 10, 0.95); border: 1px solid var(--danger);
    border-radius: 8px; box-shadow: 0 0 30px rgba(255, 77, 77, 0.15);
    z-index: 999; font-family: 'Rajdhani', sans-serif;
    overflow: hidden; animation: slideUp 0.8s ease-out;
}
.toast-header { background: var(--danger); color: #fff; padding: 10px 15px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; letter-spacing: 1px; }
.blink-dot { height: 8px; width: 8px; background: #ffff00; border-radius: 50%; display: inline-block; margin-right: 8px; animation: blinker 0.5s infinite; }
.toast-body { padding: 20px; color: #fff; text-align: center; }
.toast-body p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 10px; color: #e0e0e0; }
.live-status { font-size: 0.85rem !important; color: var(--primary) !important; font-family: 'Courier New', monospace; border-top: 1px dashed #333; padding-top: 10px; margin-top: 10px; }
.countdown-timer { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--danger); margin: 10px 0; letter-spacing: 2px; }
.glitch-btn { display: block; background: #fff; color: #000; text-decoration: none; padding: 10px; border-radius: 4px; font-weight: 800; text-transform: uppercase; transition: 0.3s; border: 2px solid #fff; margin-top: 10px; }
.glitch-btn:hover { background: var(--danger); border-color: var(--danger); color: #fff; box-shadow: 0 0 15px var(--danger); }
.close-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* --- TOP OFFER BAR --- */
.announcement-bar { background: linear-gradient(90deg, #ff4d4d, #d633ff); color: white; text-align: center; padding: 8px 10px; font-size: 0.9rem; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px; position: relative; z-index: 200; }
.announcement-bar p { margin: 0; }
.announcement-bar .highlight { background: #000; color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: bold; margin: 0 5px; }
.claim-link { color: #fff; text-decoration: underline; font-weight: 800; margin-left: 5px; }

/* --- NAVBAR --- */
.glass-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(5, 5, 16, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 100; }
.logo { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; letter-spacing: 1px; }
.accent { color: var(--primary); }
.nav-btn { padding: 8px 20px; border: 1px solid var(--primary); border-radius: 50px; text-decoration: none; color: var(--primary); font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.nav-btn:hover { background: var(--primary); color: #000; }

/* --- HERO --- */
.hero { text-align: center; padding: 80px 20px; max-width: 900px; margin: 0 auto; }
.status-badge { display: inline-flex; align-items: center; background: rgba(255, 50, 50, 0.1); color: #ff4d4d; padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255, 50, 50, 0.2); }
.dot { height: 8px; width: 8px; background: #ff4d4d; border-radius: 50%; margin-right: 8px; animation: blinker 2s infinite; }
.hero-title { font-family: 'Rajdhani', sans-serif; font-size: 4rem; line-height: 1.1; font-weight: 700; margin-bottom: 20px; }
.text-gradient { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }
.offer-text { color: var(--danger); font-weight: 700; display: block; margin-top: 10px; }

/* --- BUTTONS --- */
.btn-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { padding: 16px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: #000; box-shadow: 0 0 20px rgba(0, 242, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(0, 242, 255, 0.5); }
.btn-secondary { background: transparent; border: 1px solid var(--glass-border); color: #fff; }
.btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }

/* --- TOOLS --- */
.container { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; margin-bottom: 10px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: 25px; border-radius: 16px; text-decoration: none; color: #fff; transition: all 0.4s ease; display: flex; flex-direction: column; }
.glass-card:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(255, 255, 255, 0.05); }
.icon-glow { width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 15px; background: rgba(255,255,255,0.05); }
.icon-glow.red { color: #ff4d4d; box-shadow: 0 0 15px rgba(255, 77, 77, 0.1); }
.icon-glow.blue { color: #00f2ff; box-shadow: 0 0 15px rgba(0, 242, 255, 0.1); }
.icon-glow.orange { color: #ffaa00; box-shadow: 0 0 15px rgba(255, 170, 0, 0.1); }
.icon-glow.purple { color: #d633ff; box-shadow: 0 0 15px rgba(214, 51, 255, 0.1); }
.icon-glow.green { color: #00ff88; box-shadow: 0 0 15px rgba(0, 255, 136, 0.1); }
.glass-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; margin-bottom: 8px; }
.glass-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.link-arrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; color: var(--primary); text-transform: uppercase; display: flex; align-items: center; gap: 5px; }

/* --- FORM --- */
.glass-form { background: rgba(10, 10, 25, 0.8); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); padding: 40px; border-radius: 20px; text-align: center; max-width: 600px; margin: 0 auto; }
.glass-form h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; margin-bottom: 10px; }
.input-row { display: flex; gap: 15px; margin-top: 30px; }
input, textarea { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); padding: 15px; border-radius: 8px; color: #fff; font-family: 'Inter', sans-serif; margin-bottom: 15px; font-size: 1rem; }
input:focus, textarea:focus { outline: none; border-color: var(--primary); background: rgba(0, 242, 255, 0.05); }
.submit-btn { width: 100%; padding: 15px; background: #fff; color: #000; border: none; border-radius: 8px; font-weight: 800; font-size: 1rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.submit-btn:hover { background: var(--primary); box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }
#form-status { margin-top: 15px; font-weight: bold; }
.direct-contact { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.email-link { color: var(--text-muted); text-decoration: none; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; transition: 0.3s; }
.email-link:hover { color: var(--primary); }

/* 🔥 FIX: Footer Styles */
footer {
    text-align: center;
    width: 100%;
    padding: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--glass-border);
    letter-spacing: 1px;
}

@media(max-width: 768px) {
    .glitch-toast { width: 90%; right: 5%; bottom: 10px; }
    .hero-title { font-size: 2.5rem; }
    .hero-sub { font-size: 1rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .input-row { flex-direction: column; gap: 0; }
    .hero { padding: 60px 20px; }
    .glass-form { padding: 30px 20px; }
    .container { margin: 40px auto; }
    .glass-nav { padding: 15px 20px; }
    .logo { font-size: 1.5rem; }
}
@keyframes pulse { 0% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); } 70% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); } 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); } }
@keyframes blinker { 50% { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }