* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0f;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #00f0ff;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 240, 255, 0.03) 0px,
        rgba(0, 240, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0, 240, 255, 0.02) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
    animation: scanline 8s linear infinite;
}

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

.container {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

h1 {
    font-size: 8rem;
    color: #00f0ff;
    text-shadow: 
        0 0 5px #00f0ff,
        0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00f0ff;
    margin-bottom: 20px;
    animation: neon-pulse 2s ease-in-out infinite alternate;
    position: relative;
}

h1::before,
h1::after {
    content: '2026';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1::before {
    color: #ff00ff;
    animation: glitch-1 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.8;
}

h1::after {
    color: #8000ff;
    animation: glitch-2 0.3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    opacity: 0.8;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(2px, 2px); }
    75% { transform: translate(-2px, 2px); }
}

@keyframes neon-pulse {
    from {
        text-shadow: 
            0 0 5px #00f0ff,
            0 0 10px #00f0ff,
            0 0 20px #00f0ff,
            0 0 40px #00f0ff;
    }
    to {
        text-shadow: 
            0 0 10px #00f0ff,
            0 0 20px #00f0ff,
            0 0 40px #00f0ff,
            0 0 80px #00f0ff,
            0 0 120px #00f0ff;
    }
}

.message {
    font-size: 2rem;
    color: #ff00ff;
    margin: 20px 0;
    text-shadow: 
        0 0 5px #ff00ff,
        0 0 10px #ff00ff;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #8000ff;
    margin: 30px 0;
    font-style: italic;
    text-shadow: 0 0 10px #8000ff;
    transition: opacity 0.3s ease;
    font-family: 'Courier New', monospace;
    background: rgba(128, 0, 255, 0.1);
    padding: 10px 20px;
    border: 1px solid rgba(128, 0, 255, 0.3);
    display: inline-block;
}

.emoji-container {
    font-size: 3rem;
    margin: 30px 0;
    animation: bounce 2s ease-in-out infinite;
}

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

.button {
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid #00f0ff;
    color: #00f0ff;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(
        10px 0, 
        100% 0, 
        100% calc(100% - 10px), 
        calc(100% - 10px) 100%, 
        0 100%, 
        0 10px
    );
    position: relative;
    overflow: hidden;
}

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

.button:hover::before {
    left: 100%;
}

.button:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 
        0 0 20px #00f0ff,
        0 0 40px #00f0ff,
        inset 0 0 20px rgba(0, 240, 255, 0.1);
    transform: scale(1.05);
}

.wish-input {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#wishInput {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 2px solid #00f0ff;
    border-radius: 0;
    background: rgba(0, 10, 15, 0.8);
    color: #00f0ff;
    width: 300px;
    text-align: center;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

#wishInput::placeholder {
    color: rgba(0, 240, 255, 0.5);
}

#wishInput:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 
        0 0 15px #ff00ff,
        0 0 30px rgba(255, 0, 255, 0.3);
}

.wish-button {
    padding: 12px 30px;
    font-size: 1rem;
}

.floating-wish {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 20px currentColor;
    pointer-events: none;
    white-space: nowrap;
    animation: floatUp linear forwards;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
        filter: blur(0px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-40vh) rotate(5deg) scale(1.1);
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-80vh) rotate(10deg) scale(0.9);
        filter: blur(3px);
    }
}

.particle {
    position: absolute;
    pointer-events: none;
    animation: particleFade 0.8s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
}

.circuit-node {
    position: absolute;
    pointer-events: none;
    background: #00f0ff;
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
    animation: node-pulse 3s ease-in-out infinite;
}

@keyframes node-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: explode 1s ease-out forwards;
}

@keyframes explode {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

.data-bit {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    animation: fall linear forwards;
    color: #00f0ff;
    text-shadow: 0 0 5px #00f0ff;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.circuit-particle {
    position: absolute;
    pointer-events: none;
    animation: circuit-trace 1s ease-out forwards;
}

@keyframes circuit-trace {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(45deg);
    }
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
    height: 2px;
    pointer-events: none;
    animation: line-fade 0.5s ease-out forwards;
}

@keyframes line-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.digital-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    animation: spark-fade 0.5s ease-out forwards;
}

@keyframes spark-fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.binary-trail {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    pointer-events: none;
    animation: binary-fall 1s ease-out forwards;
    text-shadow: 0 0 5px currentColor;
}

@keyframes binary-fall {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) rotate(45deg);
    }
}

.energy-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-expand 0.6s ease-out forwards;
}

@keyframes pulse-expand {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

.matrix-char {
    position: absolute;
    font-family: monospace;
    pointer-events: none;
    animation: matrix-fade 1.2s ease-out forwards;
    text-shadow: 0 0 10px #00f0ff;
}

@keyframes matrix-fade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
}

.glowing-orb {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    pointer-events: none;
    animation: orb-fade 0.4s ease-out forwards;
}

@keyframes orb-fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.cross-hair {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid;
    pointer-events: none;
    animation: cross-fade 0.3s ease-out forwards;
}

.cross-hair::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #00f0ff;
}

@keyframes cross-fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}
