:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.65);
    --primary: #6366f1; /* Indigo */
    --accent: #00E5FF; /* Cyan */
    --secondary: #d946ef; /* Magenta */
    --text-color: #ffffff;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; 
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    color: var(--text-color);
}

.cursor-dot {
    width: 5px; height: 5px; background-color: var(--accent);
    position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9999;
    pointer-events: none; transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px; height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9998;
    pointer-events: none; transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:has(.social-item:hover) .cursor-outline,
body:has(.glow-btn:hover) .cursor-outline {
    width: 50px; height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.cyber-grid {
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    z-index: -2;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.bg-animation .blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}
.b1 { width: 400px; height: 400px; background: var(--primary); top: -10%; left: -10%; }
.b2 { width: 500px; height: 500px; background: var(--secondary); bottom: -10%; right: -10%; animation-delay: -5s; }
.b3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; opacity: 0.3; }

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    opacity: 0; 
    transform: translateY(30px);
}

.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.logo-area {
    font-size: 2rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 20px;
    color: white;
}
.accent { color: var(--accent); }

.status-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; color: var(--primary);
    margin-bottom: 20px; font-weight: 600; text-transform: uppercase;
}
.pulse-dot {
    width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.main-title {
    font-size: 3.5rem; line-height: 1.1; font-weight: 700; margin-bottom: 20px;
}
.typewriter-text {
    background: linear-gradient(to right, var(--accent), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cursor-blink { animation: blink 1s infinite; font-weight: 100; color: var(--accent); }
@keyframes blink { 50% { opacity: 0; } }

.sub-text {
    color: var(--text-muted); font-size: 1.1rem; line-height: 1.6;
    margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.input-group {
    display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; position: relative;
}
.glow-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px; border-radius: 12px;
    color: white; font-size: 1rem; width: 300px; outline: none;
    transition: 0.3s; font-family: 'Outfit', sans-serif;
}
.glow-input:focus {
    border-color: var(--accent); box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.glow-btn {
    padding: 0 24px; border-radius: 12px; border: none;
    background: white; color: black; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    transition: 0.3s;
}
.glow-btn:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-2px);
}

.input-group.success .glow-input { border-color: #22c55e; color: #22c55e; }
.input-group.success .glow-btn { background: #22c55e; color: white; pointer-events: none; }
.input-group.success .btn-text { display: none; }
.input-group.success .btn-icon::before { content: "\eb7a"; font-family: remixicon; } /* Check icon */

.social-links { display: flex; justify-content: center; gap: 20px; font-size: 1.5rem; }
.social-item {
    color: var(--text-muted); transition: 0.3s; display: flex;
}
.social-item:hover { color: white; transform: scale(1.1); text-shadow: 0 0 10px white; }

@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .input-group { flex-direction: column; }
    .glow-input { width: 100%; }
    .glow-btn { justify-content: center; padding: 16px; }
}