:root {
    --text-opacity: 0.6;
}

body, html { 
    margin: 0; padding: 0; overflow: hidden; background: #000;
    font-family: 'Helvetica', sans-serif;
    cursor: none; /* Hide default system mouse */
}

/* --- MOUSE CURSOR LOGIC --- */
#custom-cursor {
    position: fixed; width: 130px; height: 130px;
    pointer-events: none; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    mix-blend-mode: exclusion;
    transition: transform 0.15s ease-out;
}

.cursor-icon {
    color: white; font-size: 22px;
    width: 10px; height: 10px;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover: Scale up and change arrow to white circle */
#custom-cursor.hovering { transform: scale(1.6); }
#custom-cursor.hovering .cursor-icon {
    background: rgb(255, 255, 255); border-radius: 50%;
    width: 12px; height: 12px; font-size: 0;
}

.cursor-text-wrapper {
    position: absolute; width: 100%; height: 100%;
    animation: rotateCursor 12s linear infinite;
}

.cursor-text-wrapper span {
    position: absolute; left: 50%; transform-origin: 0 65px;
    color: white; font-size: 9px; font-weight: bold; text-transform: uppercase;
}

/* Position letters in a circle around the arrow */
.cursor-text-wrapper span:nth-child(1) { transform: rotate(0deg); }
.cursor-text-wrapper span:nth-child(2) { transform: rotate(18deg); }
.cursor-text-wrapper span:nth-child(3) { transform: rotate(36deg); }
.cursor-text-wrapper span:nth-child(4) { transform: rotate(54deg); }
.cursor-text-wrapper span:nth-child(5) { transform: rotate(72deg); }
.cursor-text-wrapper span:nth-child(6) { transform: rotate(90deg); }
.cursor-text-wrapper span:nth-child(7) { transform: rotate(108deg); }
.cursor-text-wrapper span:nth-child(8) { transform: rotate(126deg); }
.cursor-text-wrapper span:nth-child(9) { transform: rotate(144deg); }
.cursor-text-wrapper span:nth-child(10) { transform: rotate(162deg); }
.cursor-text-wrapper span:nth-child(11) { transform: rotate(180deg); }
.cursor-text-wrapper span:nth-child(12) { transform: rotate(198deg); }
.cursor-text-wrapper span:nth-child(13) { transform: rotate(216deg); }
.cursor-text-wrapper span:nth-child(14) { transform: rotate(234deg); }
.cursor-text-wrapper span:nth-child(15) { transform: rotate(252deg); }
.cursor-text-wrapper span:nth-child(16) { transform: rotate(270deg); }
.cursor-text-wrapper span:nth-child(17) { transform: rotate(288deg); }
.cursor-text-wrapper span:nth-child(18) { transform: rotate(306deg); }
.cursor-text-wrapper span:nth-child(19) { transform: rotate(324deg); }

@keyframes rotateCursor { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- BRANDING & UI --- */
.side-text-container { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); z-index: 100; }
.vertical-text { transform: rotate(-90deg); transform-origin: left bottom; color: white; font-size: 10px; letter-spacing: 6px; opacity: var(--text-opacity); white-space: nowrap; }

.central-logo { width: 120px; height: auto; filter: brightness(0) invert(0); /* Black as per screenshot */ }

.top-left-logo { position: absolute; top: 0px; left: 40px; z-index: 100; pointer-events: all; }
.mini-triangle { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 12px solid white; }
.menu-grid { position: absolute; top: 40px; right: 40px; display: grid; grid-template-columns: repeat(2, 6px); gap: 4px; z-index: 100; pointer-events: all; }
.menu-grid .dot { width: 5px; height: 5px; background: white; border-radius: 50%; }
.bottom-right-icon { position: absolute; bottom: 40px; right: 40px; width: 12px; height: 12px; background: white; transform: rotate(45deg); z-index: 100; }

.tunnel-container { position: relative; width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; }
.video-layer { position: absolute; transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1); border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
video { width: 100vw; height: 100vh; object-fit: cover; filter: sepia(0.6) brightness(0.4); }

.v-big { width: 100vw; height: 100vh; z-index: 1; }
.v-mid { width: 85vw; height: 85vh; z-index: 2; box-shadow: 0 0 100px #000; }
.v-small { width: 65vw; height: 65vh; z-index: 3; box-shadow: 0 0 100px #000; }

.logo-overlay { position: absolute; z-index: 50; text-align: center; pointer-events: all; }
.scroll-tag { margin-top: 40px; color: white; letter-spacing: 10px; font-size: 10px; opacity: var(--text-opacity); }
:root {
    --accent: #ffffff;
}

body, html {
    margin: 0; padding: 0;
    width: 100%; height: 100%;
    background: #000;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}

#preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

/* Middle Video Box */
.video-container {
    position: relative;
    width: 70%; 
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    background: #050505;
    overflow: hidden;
}

.video-content {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Latin Numbers (Bottom Left) */
.loading-ui {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 10;
}

#latin-counter {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 0 10px var(--accent);
}

.status-label {
    color: #fff;
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Skip Button with X Styling */
.skip-btn {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 18px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.skip-btn span {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.skip-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .video-container {
        width: 90%;
        aspect-ratio: 1 / 1;
    }
    .skip-btn {
        bottom: 30px;
        right: 20px;
        padding: 8px 14px;
    }
}