:root {
    --color-bg: #050505;
    --color-yellow: #feca57;
    --font-main: 'Outfit', sans-serif;
}

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

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: #ffffff;
}

/* Canvas Three.js fijo de fondo */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

/* Contenido centrado */
.main-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    pointer-events: none;
}

/* Logo */
.logo-row {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
}

.logo-text {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--color-yellow);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 0 60px rgba(254, 202, 87, 0.3);
}

/* Punto rojo pulsante */
.recording-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4757;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.9);
    animation: pulse-record 1.5s infinite;
    position: absolute;
    right: -16px;
    top: 6px;
}

@keyframes pulse-record {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Texto Próximamente */
.coming-soon {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    text-align: center;
}