@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--darker-bg);
    color: var(--neon-cyan);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.splash-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
}

.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.splash-particles::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--neon-cyan),
        20vw 20vh 0 0 var(--neon-pink),
        40vw 40vh 0 0 var(--neon-green),
        60vw 60vh 0 0 var(--neon-yellow),
        80vw 80vh 0 0 var(--neon-cyan);
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.splash-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 40px;
}

.splash-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: glitch 2s infinite;
}

.splash-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--neon-yellow);
    margin-bottom: 60px;
    text-shadow: 0 0 10px var(--neon-yellow);
    letter-spacing: 3px;
}

.enter-button {
    position: relative;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    border: none;
    padding: 30px 80px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Press Start 2P', cursive;
    color: var(--darker-bg);
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(0, 255, 255, 0.3);
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(0, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 50px rgba(255, 0, 255, 0.8),
            0 0 100px rgba(0, 255, 255, 0.5);
    }
}

.enter-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 60px rgba(255, 0, 255, 0.8),
        0 0 120px rgba(0, 255, 255, 0.6);
}

.enter-button:active {
    transform: scale(0.95);
}

.enter-button-text {
    position: relative;
    z-index: 2;
}

.enter-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.enter-button:hover .enter-button-glow {
    width: 400px;
    height: 400px;
}

.main-content {
    opacity: 0;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Noise Effect */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    animation: noise 0.2s infinite;
}

@keyframes noise {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Glitch Header */
.glitch-container {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.glitch {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--neon-cyan);
    text-transform: uppercase;
    position: relative;
    animation: glitch 2s infinite;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-green);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-yellow), 2px 2px var(--neon-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    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-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 50px, 0); }
    90% { clip: rect(10px, 9999px, 58px, 0); }
    95% { clip: rect(35px, 9999px, 87px, 0); }
    100% { clip: rect(79px, 9999px, 70px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(14px, 9999px, 33px, 0); }
    10% { clip: rect(12px, 9999px, 14px, 0); }
    15% { clip: rect(74px, 9999px, 61px, 0); }
    20% { clip: rect(73px, 9999px, 99px, 0); }
    25% { clip: rect(14px, 9999px, 15px, 0); }
    30% { clip: rect(1px, 9999px, 83px, 0); }
    35% { clip: rect(90px, 9999px, 98px, 0); }
    40% { clip: rect(23px, 9999px, 30px, 0); }
    45% { clip: rect(86px, 9999px, 40px, 0); }
    50% { clip: rect(98px, 9999px, 29px, 0); }
    55% { clip: rect(54px, 9999px, 69px, 0); }
    60% { clip: rect(6px, 9999px, 60px, 0); }
    65% { clip: rect(48px, 9999px, 85px, 0); }
    70% { clip: rect(23px, 9999px, 68px, 0); }
    75% { clip: rect(55px, 9999px, 40px, 0); }
    80% { clip: rect(33px, 9999px, 98px, 0); }
    85% { clip: rect(13px, 9999px, 45px, 0); }
    90% { clip: rect(3px, 9999px, 42px, 0); }
    95% { clip: rect(31px, 9999px, 94px, 0); }
    100% { clip: rect(94px, 9999px, 99px, 0); }
}

/* Contract Address Display */
.contract-address-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    flex-wrap: wrap;
}

.contract-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.contract-value {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-value:hover {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    transform: scale(1.05);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--neon-yellow);
    margin-top: 20px;
    text-shadow: 0 0 10px var(--neon-yellow);
    letter-spacing: 3px;
}

.status-indicator {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-top: 15px;
    padding: 8px 20px;
    display: inline-block;
    border: 1px solid currentColor;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Token Display */
.token-display {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.token-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 3px solid var(--neon-pink);
    border-radius: 10px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--neon-pink),
            inset 0 0 20px rgba(255, 0, 255, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px var(--neon-pink),
            0 0 60px var(--neon-cyan),
            inset 0 0 30px rgba(255, 0, 255, 0.2);
        transform: scale(1.05);
    }
}

.token-name {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.token-price {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--neon-green);
}

.price-label {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.price-value {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 15px var(--neon-yellow);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

/* Cupsey Love Section */
.cupsey-love-section {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.cupsey-love-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 3px solid var(--neon-pink);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        inset 0 0 30px rgba(255, 0, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cupsey-love-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cupsey-love-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--neon-pink);
    margin-bottom: 25px;
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cupsey-love-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--neon-cyan);
}

.cupsey-love-text p {
    margin: 15px 0;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.cupsey-love-text p:nth-child(odd) {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}

.cupsey-love-text p:nth-child(even) {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.cupsey-disclaimer {
    margin-top: 25px !important;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3) !important;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    padding-top: 15px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-green), var(--neon-yellow));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: border-glow 3s linear infinite;
}

.stat-card:hover .neon-border::before {
    opacity: 1;
}

@keyframes border-glow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-value {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 80px 0;
}

.cta-text {
    margin-bottom: 40px;
}

.cta-text p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin: 15px 0;
    font-weight: 700;
}

.blink {
    animation: blink-text 1s infinite;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.blink-delay {
    animation: blink-text 1s infinite 0.33s;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.blink-delay-2 {
    animation: blink-text 1s infinite 0.66s;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
}

@keyframes blink-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.buy-button {
    position: relative;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    border: none;
    padding: 25px 60px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-family: 'Press Start 2P', cursive;
    color: var(--darker-bg);
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.buy-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
}

.buy-button:active {
    transform: scale(0.95);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

/* Trade History */
.trade-history-section {
    margin: 60px 0;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--neon-cyan);
    letter-spacing: 2px;
}

.trade-history {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.trade-history-placeholder {
    text-align: center;
    color: rgba(0, 255, 255, 0.5);
    padding: 40px;
    font-style: italic;
}

.trade-item {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trade-item:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateX(5px);
}

.trade-item.trade-buy {
    border-left-color: #00ff00;
}

.trade-item.trade-sell {
    border-left-color: #ff6b6b;
}

.trade-type {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    grid-column: 1;
    grid-row: 1;
}

.trade-item.trade-buy .trade-type {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.trade-item.trade-sell .trade-type {
    color: #ff6b6b;
    text-shadow: 0 0 10px #ff6b6b;
}

.trade-amounts {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trade-sol {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.trade-usd {
    font-size: 0.85rem;
    color: var(--neon-yellow);
    opacity: 0.8;
}

.trade-trader {
    grid-column: 3;
    grid-row: 1;
    font-size: 0.75rem;
    color: rgba(0, 255, 255, 0.6);
    font-family: 'Courier New', monospace;
    align-self: start;
}

.trade-time {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.7rem;
    color: rgba(0, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
    margin-top: 5px;
}

/* Scrollbar styling for trade history */
.trade-history::-webkit-scrollbar {
    width: 8px;
}

.trade-history::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.trade-history::-webkit-scrollbar-thumb {
    background: var(--neon-pink);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--neon-pink);
}

.trade-history::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Terminal */
.terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: 0 0 20px var(--neon-green);
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: var(--neon-green);
    color: var(--darker-bg);
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.terminal-body {
    padding: 20px;
    min-height: 200px;
    color: var(--neon-green);
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    margin: 5px 0;
    animation: typewriter 0.5s steps(40) forwards;
    opacity: 0;
}

.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 1s; }
.terminal-line:nth-child(3) { animation-delay: 1.5s; }
.terminal-line:nth-child(4) { animation-delay: 2s; }

@keyframes typewriter {
    to {
        opacity: 1;
    }
}

.terminal-line::after {
    content: '_';
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Random Messages */
.random-messages {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.cupsey-message {
    position: absolute;
    font-family: 'Press Start 2P', cursive;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    animation: message-appear 3s ease-out forwards;
    pointer-events: none;
    user-select: none;
    text-align: center;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid currentColor;
    border-radius: 3px;
    backdrop-filter: blur(2px);
    font-size: clamp(0.2rem, 0.5vw, 0.4rem);
    transform-origin: center center;
}

@keyframes message-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1.1);
    }
    20% {
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.8);
    }
}

/* Cupsey Rain */
.cupsey-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.cupsey-falling {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
    animation: cupsey-fall linear forwards;
    user-select: none;
}

@keyframes cupsey-fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(var(--drift, 0px)) rotate(var(--rotation, 360deg));
        opacity: 0;
    }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: float 10s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Footer */
footer {
    text-align: center;
    margin: 60px 0 40px;
    padding: 20px;
    border-top: 2px solid var(--neon-cyan);
}

.footer-text {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-subtext {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .token-box {
        padding: 20px 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .buy-button {
        padding: 20px 40px;
    }
}

