:root {
    --gold: #D4AF37;
    --gold-dim: #8B735B;
    --marble: #F5F0E1;
    --void: #030303;
}

body {
    background-color: #030303;
    color: #F5F0E1;
    cursor: none;
    overflow-x: hidden;
}

/* Canvas Containers */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

#ascii-container,
#ascii-container-adam {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.8;
    /* Standard Mona Lisa Opacity */
}

#ascii-container {
    top: 0;
}

#ascii-container-adam {
    top: 0;
}

.floating-nav {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(3, 3, 3, 0.6);
}

.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* --- PRO MAX CURSOR --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    display: block !important;
    /* Force visibility */
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    /* Gold with opacity */
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

/* Hover State for Links */
body.hovering .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

body.hovering .cursor-dot {
    opacity: 0;
}

/* Text Hover State (Italic/Classic) */
body.text-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: rgba(212, 175, 55, 0.2);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
    mix-blend-mode: difference;
}

/* Hide default cursor on body */
body {
    cursor: none;
}

@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}