@keyframes pixel-shift {
    0% { text-shadow: -2px -2px 0 #ff1493, 2px 2px 0 #00ffff; }
    25% { text-shadow: -3px 2px 0 #ff1493, 3px -2px 0 #00ffff; }
    50% { text-shadow: 2px -3px 0 #ff1493, -2px 3px 0 #00ffff; }
    75% { text-shadow: 3px 2px 0 #ff1493, -3px -2px 0 #00ffff; }
    100% { text-shadow: -2px -2px 0 #ff1493, 2px 2px 0 #00ffff; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes glitch {
    0% { clip-path: inset(50% 0 30% 0); transform: skew(0.15turn, 2deg); }
    20% { clip-path: inset(20% 0 60% 0); transform: skew(-0.15turn, -2deg); }
    40% { clip-path: inset(10% 0 40% 0); transform: skew(0.15turn, 2deg); }
    60% { clip-path: inset(40% 0 20% 0); transform: skew(-0.15turn, -2deg); }
    80% { clip-path: inset(30% 0 50% 0); transform: skew(0.15turn, 2deg); }
    100% { clip-path: inset(50% 0 30% 0); transform: skew(-0.15turn, -2deg); }
}

@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loading-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes geometric-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes neon-glow {
    0%, 100% { 
        text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff;
    }
    50% { 
        text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 30px #ff1493, 0 0 40px #ff1493;
    }
}

@keyframes float-cube {
    0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    33% { transform: translateY(-15px) rotateX(120deg) rotateY(120deg); }
    66% { transform: translateY(10px) rotateX(240deg) rotateY(240deg); }
    100% { transform: translateY(0px) rotateX(360deg) rotateY(360deg); }
}

@keyframes float-pyramid {
    0% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-25px) rotateZ(180deg); }
    100% { transform: translateY(0px) rotateZ(360deg); }
}

@keyframes float-ring {
    0% { transform: translateY(0px) rotateX(0deg) rotateZ(0deg); }
    25% { transform: translateY(-10px) rotateX(90deg) rotateZ(90deg); }
    50% { transform: translateY(5px) rotateX(180deg) rotateZ(180deg); }
    75% { transform: translateY(-5px) rotateX(270deg) rotateZ(270deg); }
    100% { transform: translateY(0px) rotateX(360deg) rotateZ(360deg); }
}

@keyframes particle-burst {
    0% { 
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes title-glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 20, 147, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 20, 147, 0.8), 0 0 60px rgba(0, 255, 255, 0.5);
    }
}

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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* High-performance cursor trail */
#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Cursor dot styles now handled inline for performance */

/* Geometric background elements */
body::before {
    content: none !important;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.section {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    max-width: 800px;
    text-align: center;
    position: relative;
}

/* Add geometric decorations around content */
.content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    animation: geometric-rotate 15s linear infinite;
    opacity: 0.3;
}

.content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 80px;
    height: 80px;
    border: 2px solid #ff1493;
    transform: rotate(45deg);
    animation: geometric-rotate 12s linear infinite reverse;
    opacity: 0.3;
}

.title-container {
    position: relative;
    margin-bottom: 2rem;
}

/* Floating 3D elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-cube {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    border: 2px solid #00ffff;
    animation: float-cube 8s ease-in-out infinite;
    transform-style: preserve-3d;
    opacity: 0.7;
}

.floating-cube::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #ff1493;
    transform: translateZ(15px);
}

.floating-pyramid {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #98ff98;
    animation: float-pyramid 6s ease-in-out infinite;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(152, 255, 152, 0.5));
}

.floating-ring {
    position: absolute;
    bottom: 25%;
    left: 80%;
    width: 40px;
    height: 40px;
    border: 4px solid #ffd700;
    border-radius: 50%;
    animation: float-ring 10s ease-in-out infinite;
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Add more geometric elements around title */
.title-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 60px;
    height: 60px;
    border: 3px solid #98ff98;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: geometric-rotate 10s linear infinite;
    opacity: 0.4;
}

.title-container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 60px;
    height: 60px;
    border: 3px solid #ffd700;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: geometric-rotate 8s linear infinite reverse;
    opacity: 0.4;
}

h1 {
    font-size: 7.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: monospace;
    position: relative;
    font-weight: 900;
    transform: skew(-5deg);
    /* Remove gradient that's causing issues */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.15));
    animation: none;
}
h1::before,
h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 48%,
        #ff1493 48%,
        #ff1493 52%,
        transparent 52%,
        transparent 100%
    );
    background-size: 4px 4px;
    mix-blend-mode: multiply;
    animation: gradient-shift 4s linear infinite;
    opacity: 0.35;
    clip-path: polygon(
        -2px -2px,
        calc(100% + 2px) -2px,
        calc(100% + 2px) calc(100% + 2px),
        -2px calc(100% + 2px)
    );
}

h1::after {
    background: linear-gradient(
        -45deg,
        transparent 0%,
        transparent 48%,
        #00ffff 48%,
        #00ffff 52%,
        transparent 52%,
        transparent 100%
    );
    background-size: 4px 4px;
    animation: gradient-shift 4s linear infinite reverse;
    clip-path: polygon(
        -2px -2px,
        calc(100% + 2px) -2px,
        calc(100% + 2px) calc(100% + 2px),
        -2px calc(100% + 2px)
    );
}

@keyframes gradient-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.pixel-text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #98ff98;
    text-shadow: 
        3px 3px 0 rgba(0,0,0,0.8),
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    position: relative;
}

/* Add scan lines effect */
.pixel-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    pointer-events: none;
    animation: loading-pulse 2s ease-in-out infinite;
}

.social-link {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    background: #ff1493;
    border: 4px solid #ff1493;
    box-shadow: 
        0 0 0 2px #000,
        4px 4px 0 2px #000,
        inset 2px 2px 0 rgba(255,255,255,0.4),
        inset -2px -2px 0 rgba(0,0,0,0.4);
    transition: all 0.2s ease;
    position: relative;
    font-weight: bold;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    overflow: hidden;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particle-burst 1s ease-out forwards;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.8);
}

.particle-fade {
    animation: particle-dissolve 0.6s ease-out forwards;
}

@keyframes particle-dissolve {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0px);
    }
    30% {
        opacity: 0.8;
        transform: scale(0.9) rotate(45deg) translateY(-5px);
    }
    60% {
        opacity: 0.4;
        transform: scale(0.6) rotate(120deg) translateY(15px);
    }
    80% {
        opacity: 0.2;
        transform: scale(0.3) rotate(160deg) translateY(25px);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) rotate(180deg) translateY(35px);
    }
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        0 0 0 2px #000,
        6px 6px 0 2px #000,
        inset 2px 2px 0 rgba(255,255,255,0.4),
        inset -2px -2px 0 rgba(0,0,0,0.4),
        0 0 20px rgba(255, 20, 147, 0.5);
}

.social-link:active {
    transform: translate(2px, 2px);
    box-shadow: 
        0 0 0 2px #000,
        2px 2px 0 2px #000,
        inset 2px 2px 0 rgba(0,0,0,0.4),
        inset -2px -2px 0 rgba(255,255,255,0.4);
}

.nft-gallery {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    font-weight: 900;
    font-family: monospace;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
}

.title-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #ffffff;
    filter: none;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: title-glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Add geometric frame around gallery title */
.gallery-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: loading-pulse 2s ease-in-out infinite;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff1493, transparent);
    animation: loading-pulse 2s ease-in-out infinite reverse;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: #00ffff;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 255, 255, 0.3);
    border-top: 4px solid #00ffff;
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: loading-spin 1s linear infinite;
}

.loading p {
    font-size: 1.2rem;
    animation: loading-pulse 1.5s ease-in-out infinite;
}

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(0, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(255, 20, 147, 0.05) 75%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nft-card:hover::before {
    opacity: 1;
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(255, 20, 147, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.nft-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(0, 255, 255, 0.1) 45%,
        rgba(0, 255, 255, 0.3) 50%,
        rgba(0, 255, 255, 0.1) 55%,
        transparent 100%
    );
    z-index: 1;
    animation: shine 1.5s ease-in-out infinite;
}

.nft-card:active {
    transform: scale(0.98);
}

.nft-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.nft-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
}

.nft-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.nft-card:hover .nft-overlay {
    opacity: 1;
}

.solana-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.solana-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nft-card:hover .solana-icon {
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 1));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    }
}

.nft-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.nft-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.nft-info p {
    color: #98ff98;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.no-nfts, .error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: #ff1493;
    font-size: 1.2rem;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    #cursor-trail {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    h1 {
        font-size: 4rem;
    }
    
    .content::before,
    .content::after,
    .title-container::before,
    .title-container::after {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
}

/* --- Terminal overlay --- */
#terminal-overlay {
    position: fixed;
    inset: 0;
    background: #050607;
    color: #00ffd5;
    font-family: 'Courier New', monospace;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
#terminal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms ease;
}
.terminal-inner {
    width: min(900px, 92vw);
    height: min(70vh, 70vh);
    border: 1px solid rgba(0, 255, 255, 0.25);
    background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.6));
    box-shadow: inset 0 0 60px rgba(0, 255, 255, 0.06), 0 0 30px rgba(0, 0, 0, 0.6);
    padding: 24px;
    overflow: hidden;
    position: relative;
}
#terminal-output {
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 14px;
}
.terminal-input {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.terminal-input .prompt { color: #00ffd5; opacity: 0.9; }
.terminal-input .typed { color: #00ffd5; }
.terminal-input .caret {
    width: 8px;
    height: 1em;
    background: #00ffd5;
    display: inline-block;
    animation: caret-blink 1s steps(2, start) infinite;
}
.terminal-hint {
    position: absolute;
    bottom: 12px;
    right: 16px;
    opacity: 0.6;
    font-size: 12px;
}
@keyframes caret-blink { 50% { opacity: 0; } }

/* subtle preload shake before explosion */
.preload-shake {
    animation: preload-shake 0.6s ease;
}
@keyframes preload-shake {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-4px, 2px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-2px, 1px); }
    80% { transform: translate(3px, 0px); }
}

/* Title drop-in after scene loads */
.title-drop {
    transform: translateY(-140vh);
    opacity: 0;
    position: relative;
    z-index: 10;
}
body.loaded #site-title.title-drop {
    animation: title-drop 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 1 !important;
}
@keyframes title-drop {
    0% { 
        transform: translateY(-140vh) scale(0.98); 
        opacity: 0; 
    }
    80% { 
        transform: translateY(10px); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(0) skew(-5deg); 
        opacity: 1; 
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* Ensure title is visible - fixed version */
#site-title {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    font-size: 7.5rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    transform: skew(-5deg);
    filter: none !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
}
#site-title::before,
#site-title::after {
    display: none !important;
}

/* Purge 2D floating shapes and decorative rectangles */
.floating-elements,
.floating-cube,
.floating-pyramid,
.floating-ring {
    display: none !important;
}
.content::before,
.content::after,
.title-container::before,
.title-container::after {
    content: none !important;
}

/* Shooter Mode HUD */
#shooter-hud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5000;
    font-family: 'Courier New', monospace;
}

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #00ff00;
    text-shadow: 
        0 0 10px #00ff00, 
        0 0 20px #00ff00,
        0 0 30px #00ff00,
        2px 2px 0 rgba(0, 0, 0, 0.8),
        -2px -2px 0 rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 5001;
    font-weight: bold;
    line-height: 1;
    font-family: monospace;
    user-select: none;
}

.hud-info {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #00ffff;
    font-size: 14px;
    text-shadow: 0 0 5px #00ffff;
}

.hud-info div {
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 3px;
    backdrop-filter: blur(5px);
}

.score {
    color: #ffd700;
    text-shadow: 0 0 8px #ffd700;
    font-weight: bold;
}

.timer {
    color: #ff1493;
    text-shadow: 0 0 8px #ff1493;
    font-weight: bold;
}

.instructions {
    color: #98ff98;
    text-shadow: 0 0 5px #98ff98;
    font-size: 12px;
    opacity: 0.9;
}

/* Show cursor during shooter mode */
body.shooter-mode {
    cursor: none !important; /* Hide default cursor completely */
}

body.shooter-mode * {
    cursor: none !important; /* Force hide cursor on all elements */
}

/* Make INDEX title interactive */
#site-title {
    transition: all 0.3s ease;
}

#site-title:hover {
    transform: skew(-5deg) scale(1.05);
    text-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8), 
        0 0 60px rgba(0, 255, 255, 0.5);
    cursor: pointer;
}