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

body {
    background: linear-gradient(45deg, #0a0e0a, #1a2e1a, #0d1f0d, #142314);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-family: 'Courier New', monospace;
    color: #7fff00;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

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

.smoke {
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(127,255,0,0.05)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite;
    pointer-events: none;
}

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

.container {
    text-align: center;
    z-index: 10;
    padding: 40px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #7fff00;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(127, 255, 0, 0.5), inset 0 0 20px rgba(127, 255, 0, 0.1);
    animation: pulse 3s ease-in-out infinite, float-container 6s ease-in-out infinite;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(127, 255, 0, 0.5), inset 0 0 20px rgba(127, 255, 0, 0.1); }
    50% { box-shadow: 0 0 50px rgba(127, 255, 0, 0.8), inset 0 0 30px rgba(127, 255, 0, 0.2); }
}

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

.leaf {
    font-size: 4em;
    animation: spin 4s linear infinite, float 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 10px #7fff00);
}

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

h1 {
    font-size: 3em;
    margin: 20px 0;
    text-shadow: 0 0 20px #7fff00, 0 0 40px #7fff00;
    letter-spacing: 5px;
    animation: glow 2s ease-in-out infinite alternate, rainbow-text 10s linear infinite;
}

@keyframes rainbow-text {
    0% { color: #7fff00; }
    16% { color: #00ff7f; }
    33% { color: #00ffff; }
    50% { color: #7f00ff; }
    66% { color: #ff00ff; }
    83% { color: #ff7f00; }
    100% { color: #7fff00; }
}

@keyframes glow {
    from { text-shadow: 0 0 20px #7fff00, 0 0 40px #7fff00; }
    to { text-shadow: 0 0 30px #7fff00, 0 0 60px #7fff00, 0 0 80px #7fff00; }
}

p {
    font-size: 1.3em;
    margin: 20px 0 40px;
    color: #90ee90;
    text-shadow: 0 0 10px rgba(127, 255, 0, 0.5);
}

.trip-list {
    list-style: none;
    padding: 0;
}

.trip-list li {
    margin: 20px 0;
}

.trip-link {
    display: inline-block;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #7fff00, #90ee90, #7fff00);
    background-size: 200% 200%;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.6);
    animation: shimmer 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.trip-link:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 0 40px rgba(127, 255, 0, 1);
    animation: shake 0.5s ease infinite;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #7fff00);
    background-size: 400% 400%;
}

@keyframes shake {
    0%, 100% { transform: scale(1.1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-2deg); }
}

.trip-link::before {
    content: '🌿';
    position: absolute;
    left: 10px;
    animation: float 2s ease infinite;
}

.trip-link::after {
    content: '🌿';
    position: absolute;
    right: 10px;
    animation: float 2s ease infinite reverse;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 9999;
    animation: confetti-fall 3s linear;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

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

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #7fff00;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 10s infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #7fff00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px #7fff00;
}

.cursor-trail {
    position: fixed;
    width: 5px;
    height: 5px;
    background: #7fff00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
}

.kaleidoscope {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 0;
}

.kaleidoscope-piece {
    position: absolute;
    width: 200px;
    height: 200px;
    background: conic-gradient(from 0deg, #7fff00, #00ff00, #90ee90, #7fff00);
    animation: rotate-kaleidoscope 20s linear infinite;
}

@keyframes rotate-kaleidoscope {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.5); }
    to { transform: rotate(360deg) scale(1); }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@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); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.rainbow-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: rainbow 2s linear infinite;
}

@keyframes rainbow {
    0% { background: #ff0000; }
    16% { background: #ff7f00; }
    33% { background: #ffff00; }
    50% { background: #00ff00; }
    66% { background: #0000ff; }
    83% { background: #8b00ff; }
    100% { background: #ff0000; }
}

.spiral {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 0;
    animation: spin-spiral 30s linear infinite;
}

@keyframes spin-spiral {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.emoji-rain {
    position: fixed;
    font-size: 30px;
    pointer-events: none;
    z-index: 1;
    animation: fall 10s linear infinite;
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 1;
    }
    100% {
        top: 110%;
        opacity: 0;
    }
}

.psychedelic-circle {
    position: fixed;
    border-radius: 50%;
    border: 3px solid;
    animation: expand-circle 5s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes expand-circle {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 1000px;
        height: 1000px;
        opacity: 0;
    }
}

.wave {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="rgba(127,255,0,0.1)"/></svg>');
    background-size: 1200px 100px;
    animation: wave-animation 10s linear infinite;
    z-index: 0;
}

@keyframes wave-animation {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

.visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    z-index: 0;
    opacity: 0.3;
}

.bar {
    width: 10px;
    background: linear-gradient(to top, #7fff00, #90ee90);
    animation: bar-bounce 1s ease-in-out infinite;
    border-radius: 10px 10px 0 0;
}

@keyframes bar-bounce {
    0%, 100% { height: 20px; }
    50% { height: 80px; }
}
