:root {
    --bg-color: #0a0a0c;
    --text-color: #e0e0e0;
    --accent-1: #ccff00; /* Neon yellow */
    --accent-2: #ff0055; /* Hot pink/red */
    --accent-3: #3b00ff; /* Deep purple */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a, button, input {
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 2rem;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}

/* Typography & Layout */
h1, h2, h3 {
    text-transform: uppercase;
    font-family: 'Impact', sans-serif;
    letter-spacing: 2px;
}

section, header, footer {
    padding: 10vh 5vw;
    border-bottom: 2px dashed var(--accent-3);
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--accent-3) 0%, var(--bg-color) 70%);
}

.glitch {
    font-size: clamp(3rem, 8vw, 8rem);
    position: relative;
    color: var(--accent-1);
    text-shadow: 6px 6px 0px var(--accent-2);
    margin-bottom: 0;
    text-align: center;
    z-index: 10;
}

.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 4px;
    text-shadow: -4px 0 var(--accent-2);
    top: 0;
    color: var(--accent-1);
    background: transparent;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim {
    0% { clip: rect(10px, 9999px, 86px, 0); }
    10% { clip: rect(74px, 9999px, 66px, 0); }
    20% { clip: rect(69px, 9999px, 50px, 0); }
    30% { clip: rect(66px, 9999px, 7px, 0); }
    40% { clip: rect(80px, 9999px, 12px, 0); }
    50% { clip: rect(51px, 9999px, 45px, 0); }
    60% { clip: rect(4px, 9999px, 2px, 0); }
    70% { clip: rect(53px, 9999px, 58px, 0); }
    80% { clip: rect(63px, 9999px, 82px, 0); }
    90% { clip: rect(83px, 9999px, 34px, 0); }
    100% { clip: rect(48px, 9999px, 24px, 0); }
}

.subtitle {
    font-size: 1.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    transform: rotate(-3deg);
    margin-top: 1rem;
    box-shadow: 4px 4px 0 var(--accent-1);
    font-weight: bold;
}

.date-container {
    margin-top: 3rem;
    font-size: 2rem;
    border: 4px solid var(--accent-1);
    padding: 1.5rem;
    animation: pulse 2s infinite;
    background: rgba(0,0,0,0.5);
    display: inline-block;
}

.date {
    color: var(--accent-2);
    font-weight: bold;
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.prophecy {
    font-style: italic;
    color: #aaa;
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.5;
    background: rgba(59, 0, 255, 0.2);
    padding: 1rem;
    border-left: 5px solid var(--accent-2);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px 10px rgba(204, 255, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}

/* Marquee */
.marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent-2);
    color: var(--bg-color);
    padding: 0.5rem 0;
    overflow: hidden;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 20;
    border-bottom: 2px solid var(--accent-1);
}

.marquee {
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    display: inline-block;
}

@keyframes scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Offerings */
.offerings {
    background: repeating-linear-gradient(
        45deg,
        var(--bg-color),
        var(--bg-color) 10px,
        #111 10px,
        #111 20px
    );
    text-align: center;
}

.tribute-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Manifestation Section */
.manifestation {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--accent-3) 100%);
    padding: 15vh 5vw;
}

.countdown-clock {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: bold;
    color: var(--accent-1);
    text-shadow: 0 0 20px var(--accent-2), 0 0 40px var(--accent-3);
    font-family: 'Impact', sans-serif;
    margin: 3rem 0;
    letter-spacing: 5px;
    animation: flicker 0.5s infinite alternate;
}

@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.8; transform: skewX(1deg); }
}

.tribute-list li {
    font-size: 1.2rem;
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.8);
    border-left: 5px solid var(--accent-1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
    cursor: none;
}

.tribute-list li:hover {
    transform: translateX(30px) scale(1.05);
    background: var(--accent-3);
    color: var(--accent-1);
    border-left-color: var(--accent-2);
}

/* Anti-Names */
.anti-names {
    background: var(--accent-3);
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.name-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.name-card {
    background: var(--bg-color);
    padding: 2.5rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid var(--accent-2);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 0 var(--accent-1);
}

.name-card::before {
    content: 'NO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 6rem;
    color: rgba(255, 0, 85, 0.15);
    pointer-events: none;
    font-family: 'Impact', sans-serif;
    letter-spacing: 5px;
}

.name-card:hover {
    transform: scale(1.1) rotate(3deg);
    background: var(--accent-1);
    color: var(--bg-color);
    border-color: var(--bg-color);
    box-shadow: -5px -5px 0 var(--accent-2);
    z-index: 2;
}

/* Footer / Contact */
.contact {
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
}

.email-link {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-1);
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    display: inline-block;
    margin: 3rem 0;
    padding: 1.5rem 3rem;
    border: 5px dashed var(--accent-2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(0,0,0,0.5);
}

.email-link:hover {
    background: var(--accent-2);
    color: var(--bg-color);
    border-color: var(--accent-1);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.5);
}

/* Art Elements */
.art-placeholder {
    margin: 3rem auto;
    max-width: 800px;
    width: 90%;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: sepia(100%) hue-rotate(240deg) saturate(300%) contrast(150%);
    box-shadow: 15px 15px 0px var(--accent-1);
    transition: filter 0.5s, box-shadow 0.5s, transform 0.5s;
    border: 3px solid var(--accent-2);
}

img:hover {
    filter: sepia(0%) hue-rotate(0deg) saturate(100%) contrast(100%);
    box-shadow: -15px -15px 0px var(--accent-2);
    transform: translate(15px, 15px);
}
