﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700&display=swap');

:root {
    --bg-color: #010205;
    --accent-glow: #bae6fd;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --clip-text: text;
    --btn-bg: rgba(15, 15, 18, 0.7);
}

/* Hide default cursor & disable text highlighting */
* {
    cursor: none !important;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
}

/* --- ENVIRONMENT & BACKGROUNDS --- */
.ambient-bg {
    position: fixed;
    top: -10vh;
    left: -10vw;
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle at 50% 50%, rgba(23,42,70,0.5) 0%, rgba(6,9,19,0) 40%), radial-gradient(circle at 30% 70%, rgba(125,211,252,0.05) 0%, rgba(6,9,19,0) 30%);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

body.is-initiated .ambient-bg {
    animation: bgIgnite 2.5s ease-out 0.4s forwards;
}

#ether {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

body.is-initiated #ether {
    animation: bgIgnite 3s ease-in 0.6s forwards;
}

@keyframes bgIgnite {
    to {
        opacity: 1;
    }
}

.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 10, 5, 0.15);
    z-index: -1;
    pointer-events: none;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 4px;
    height: 4px;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #ffffff, 0 0 20px var(--accent-glow);
}
