:root {
    --bg-color: #0a0a0a;
    --accent-color: #00ff41; 
    --text-color: #ffffff;
    --secondary-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto; 
}

::selection {
    background-color: var(--accent-color);
    color: #000;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#cursor {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px var(--accent-color);
    animation: idlePulse 2s infinite ease-in-out;

    left: 666;
    top: 666;
}
#cursor.click-active {
    animation: clickPulse 0.4s ease-out;
}

@keyframes idlePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-color); }
}

@keyframes clickPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(2.5); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

nav {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.contact-btn {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s;
    z-index: 1001;
}

.contact-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

main {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: clamp(3rem, 12vw, 9rem);
    text-transform: uppercase;
    line-height: 0.8;
    font-weight: 900;
    user-select: none;
}

h1 span {
    color: var(--accent-color);
}

.launch-info {
    margin-top: 40px;
    user-select: none;
}

.launch-date {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.demo-text {
    color: #555;
    font-size: 14px;
    margin-top: 15px;
}

#countdown {
    font-size: 20px;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 5px;
}

footer {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-info { text-align: right; }

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #000;
    padding: 60px;
    border: 1px solid var(--accent-color);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute; top: 20px; right: 20px;
    font-size: 24px; color: var(--accent-color); cursor: pointer;
}

.info-item { margin-bottom: 25px; }
.info-item label { color: #555; font-size: 10px; text-transform: uppercase; display: block; }
.info-item p { font-size: 18px; color: var(--text-color); }

@media (max-width: 768px) {
    #cursor { display: none; }
    * { cursor: auto; }
    nav, footer { padding: 20px; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .legal-info { text-align: center; }
}