:root {
    --primary: #00ff41;
    --bg: #030303;
    --font-main: 'Syne', sans-serif;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --section-gap: 3rem;
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    cursor: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    color: #fff;
    font-family: var(--font-main);
    overflow: hidden;
}

#cursor-dot {
    position: fixed; width: 4px; height: 4px; background: var(--primary);
    border-radius: 50%; pointer-events: none; z-index: 10001; transform: translate(-50%, -50%);
}

#cursor-glow {
    position: fixed; width: 30px; height: 30px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.4) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-active #cursor-glow { width: 60px; height: 60px; background: radial-gradient(circle, rgba(0, 255, 65, 0.6) 0%, transparent 70%); }

.app-interface {
    position: relative; z-index: 10;
    height: 100vh;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem;
}

.main-content {
    flex: 1;
    display: flex; justify-content: center; align-items: center;
    width: 100%;
}

.container-limit {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: var(--section-gap);
}

.logo-container { width: 100%; display: flex; justify-content: center; }

#main-logo {
    width: 100%; max-width: 800px;
    height: auto;
}

#main-logo:hover { transform: scale(1.03); filter: grayscale(0) brightness(1.3) drop-shadow(0 0 20px rgba(0,255,65,0.2)); }

.soon-text {
    font-weight: 800; font-size: 2.5rem; letter-spacing: 1rem;
    color: var(--primary); opacity: 0.9;
    margin-bottom: 1rem;
    animation: softPulse 4s ease-in-out infinite;
}

.countdown-display {
    display: flex; gap: 3rem;
    justify-content: center;
}

.time-unit span { font-weight: 700; font-size: 3.5rem; display: block; line-height: 1; }
.time-unit label { font-size: 0.7rem; color: #666; letter-spacing: 2px; font-weight: 600; margin-top: 10px; display: block; }

#notify-form {
    display: flex; border-bottom: 2px solid #222;
    padding: 10px 0; width: 300px; transition: border-color 0.3s;
}

#notify-form:focus-within { border-color: var(--primary); }
#notify-form input {
    background: transparent; border: none; color: #fff;
    font-size: 0.8rem; outline: none; flex: 1; letter-spacing: 2px; font-family: var(--font-main);
}

#notify-form button {
    background: transparent; border: none; color: var(--primary);
    font-weight: 700; font-size: 0.7rem; letter-spacing: 1px;
}

.bottom-interface {
    width: 100%; display: flex; flex-direction: column; align-items: center; 
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.social-nav { display: flex; gap: 20px; }
.social-circle {
    width: 45px; height: 45px; border-radius: 50%;
    background: #0a0a0a; border: 1px solid #1a1a1a;
    display: flex; justify-content: center; align-items: center;
    color: #888; text-decoration: none; transition: 0.3s;
}

.social-circle:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); background: #0f0f0f; }

.legal-info { text-align: center; font-size: 1.2rem; color: #444; line-height: 1.8; }
.legal-info a { 
    color: rgb(255, 255, 255); 
    font-size: 1rem;
    text-decoration: none; 
    font-weight: 800; 
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.legal-info a:hover {
    transform: scale(1.15);
    background: linear-gradient(to right, var(--primary) 20%, #fff 50%, var(--primary) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 1.5s linear infinite;
}

#scene-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;}
.vignette-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg) 100%);
}

.floating-note {
    position: absolute;
    color: var(--primary);
    opacity: 0; 
    pointer-events: none;
    font-weight: bold;
}

@keyframes softPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; text-shadow: 0 0 15px var(--primary); } }

@keyframes wave {
    to { background-position: 200% center; }
}

@media (max-width: 1024px) {
    :root { --section-gap: 2rem; }
    #main-logo { max-width: 450px; }
    .soon-text { font-size: 2rem; letter-spacing: 0.5rem; }
    .countdown-display { gap: 2rem; }
    .time-unit span { font-size: 2.5rem; }
    .legal-info { font-size: 0.9rem; }
}

@media (max-width: 600px) {
    :root { --section-gap: 1.5rem; }
    .container-limit { padding: 20px 0; }
    #main-logo { max-width: 320px; }
    .soon-text { font-size: 1.5rem; letter-spacing: 5px; }
    .countdown-display { gap: 1rem; }
    .time-unit span { font-size: 1.8rem; }
    .time-unit label { font-size: 0.6rem; }
    #notify-form { width: 240px; }
    .legal-info { font-size: 0.8rem; }
}