/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Comic Colors */
    --comic-red: #FF3366;
    --comic-blue: #0066FF;
    --comic-yellow: #FFCC00;
    --comic-green: #00FF66;
    --comic-purple: #9933FF;
    --comic-orange: #FF6600;
    
    /* Arcade Colors */
    --neon-cyan: #00FFFF;
    --neon-pink: #FF0080;
    --neon-green: #39FF14;
    --neon-yellow: #FFFF00;
    
    /* Dark Colors */
    --dark-bg: #0A0A0A;
    --dark-panel: #1A1A1A;
    --dark-border: #333333;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

.comic-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--comic-red) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--comic-blue) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.neon-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.05;
    animation: pulse 3s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    padding: 40px 0;
}

.main-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0px var(--dark-bg);
}

.title-burn {
    color: var(--comic-red);
    text-shadow: 
        4px 4px 0px var(--dark-bg),
        0 0 20px var(--comic-red),
        0 0 40px var(--comic-red);
    animation: glow-red 2s ease-in-out infinite alternate;
}

.title-machine {
    color: var(--neon-cyan);
    text-shadow: 
        4px 4px 0px var(--dark-bg),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.subtitle-bubble {
    background: var(--comic-yellow);
    color: var(--dark-bg);
    padding: 15px 25px;
    border-radius: 25px;
    position: relative;
    margin: 20px auto;
    max-width: fit-content;
    border: 4px solid var(--dark-bg);
    box-shadow: 
        0 0 0 4px var(--comic-yellow),
        8px 8px 0px var(--dark-bg);
}

.subtitle-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--comic-yellow);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--dark-panel);
    border: 3px solid var(--neon-green);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 
        0 0 20px var(--neon-green),
        inset 0 0 20px rgba(57, 255, 20, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--neon-green);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Clickable Address Styles */
.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 5px;
    border-radius: 8px;
}

.clickable:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 15px var(--neon-cyan);
    transform: scale(1.05);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.clickable:active {
    transform: scale(0.98);
}

.copy-icon {
    font-size: 0.6rem;
    margin-left: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.clickable:hover .copy-icon {
    opacity: 1;
    animation: bounce 0.6s ease-in-out;
}

.token-address {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    word-break: break-all;
}

/* Copy notification animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Authentic Slot Machine Cabinet */
.slot-machine-cabinet {
    position: relative;
    width: 280px;
    height: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
    animation: machineGlow 4s ease-in-out infinite alternate;
    display: flex;
    flex-direction: column;
}

/* Machine Crown/Header */
.machine-crown {
    height: 60px;
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        #FF6600, 
        var(--neon-pink));
    border: 3px solid var(--neon-yellow);
    border-radius: 20px 20px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 
        0 0 25px var(--neon-pink),
        inset 0 0 20px rgba(255, 0, 128, 0.2);
    position: relative;
    overflow: hidden;
    animation: crownGlow 3s ease-in-out infinite alternate;
}

.machine-crown::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: crownShine 4s linear infinite;
}

.crown-light {
    width: 15px;
    height: 15px;
    background: var(--neon-yellow);
    border-radius: 50%;
    box-shadow: 
        0 0 15px var(--neon-yellow),
        0 0 30px rgba(255, 255, 0, 0.6);
    animation: crownLightBlink 1.5s ease-in-out infinite alternate;
}

.crown-text {
    font-size: 0.7rem;
    color: white;
    text-shadow: 
        0 0 10px white,
        0 0 20px var(--neon-cyan);
    animation: crownTextGlow 2s ease-in-out infinite alternate;
    text-align: center;
    flex: 1;
}

/* Machine Main Body */
.machine-main {
    flex: 1;
    background: linear-gradient(135deg, 
        var(--dark-panel) 0%,
        #2A2A2A 25%,
        var(--dark-panel) 50%,
        #1A1A1A 75%,
        var(--dark-panel) 100%);
    border: 4px solid var(--neon-cyan);
    border-top: none;
    border-bottom: none;
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

/* Screen Frame */
.screen-frame {
    flex: 1;
    background: linear-gradient(45deg, 
        #333 0%,
        #555 25%,
        #333 50%,
        #222 75%,
        #333 100%);
    border: 5px solid var(--neon-pink);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(0, 0, 0, 0.7);
    position: relative;
}

.screen-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    pointer-events: none;
}

.screen-bezel {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #111 0%,
        #000 50%,
        #111 100%);
    border: 3px solid var(--neon-yellow);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 
        0 0 15px var(--neon-yellow),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
    animation: bezelFlicker 6s ease-in-out infinite;
}

/* Control Panel */
.control-panel {
    height: 80px;
    background: linear-gradient(45deg, 
        #2A2A2A 0%,
        #3A3A3A 25%,
        #2A2A2A 50%,
        #1A1A1A 75%,
        #2A2A2A 100%);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 0 20px var(--neon-green),
        inset 0 0 20px rgba(57, 255, 20, 0.1);
}

.panel-lights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}

.panel-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px rgba(57, 255, 20, 0.6);
    animation: panelLightBlink 2s ease-in-out infinite;
}

.panel-light:nth-child(2) {
    animation-delay: 0.7s;
    background: var(--neon-yellow);
    box-shadow: 
        0 0 10px var(--neon-yellow),
        0 0 20px rgba(255, 255, 0, 0.6);
}

.panel-light:nth-child(3) {
    animation-delay: 1.4s;
    background: var(--neon-pink);
    box-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px rgba(255, 0, 128, 0.6);
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.spin-button {
    background: linear-gradient(45deg, 
        var(--neon-green), 
        #00AA00, 
        var(--neon-green));
    border: 3px solid white;
    border-radius: 15px;
    padding: 8px 16px;
    color: black;
    font-size: 0.6rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 
        0 0 15px var(--neon-green),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: spinButtonGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.spin-button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px var(--neon-green),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.spin-button:active {
    transform: scale(0.95);
}

/* Machine Base */
.machine-base {
    height: 40px;
    background: linear-gradient(45deg, 
        #1A1A1A 0%,
        #333 50%,
        #1A1A1A 100%);
    border: 4px solid var(--neon-cyan);
    border-radius: 5px 5px 15px 15px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px var(--neon-cyan),
        inset 0 0 15px rgba(0, 0, 0, 0.7);
}

.base-grill {
    width: 80%;
    height: 8px;
    background: repeating-linear-gradient(90deg, 
        transparent 0px,
        transparent 3px,
        var(--neon-cyan) 3px,
        var(--neon-cyan) 4px);
    border-radius: 2px;
    opacity: 0.6;
    animation: grillGlow 3s ease-in-out infinite alternate;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg), #111);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    animation: screenFlicker 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-cyan), 
        var(--neon-pink), 
        var(--neon-yellow), 
        var(--neon-cyan));
    border-radius: 5px;
    z-index: -1;
    animation: borderRainbow 3s linear infinite;
}

/* Food Slot Machine */
.slot-machine {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.reel {
    width: 50px;
    height: 120px;
    background: 
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(20, 20, 20, 0.8) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid var(--neon-yellow);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 15px var(--neon-yellow),
        inset 0 0 15px rgba(255, 255, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.reel::before {
    content: '';
    position: absolute;
    top: 45%;
    left: -5px;
    right: -5px;
    height: 10%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 0, 0.8), 
        transparent);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    z-index: 10;
}

.symbol {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.6));
    animation: symbolGlow 2s ease-in-out infinite alternate;
}

/* Reel Animations */
#reel1 {
    animation: reelSpin1 3s linear infinite;
}

#reel2 {
    animation: reelSpin2 3.5s linear infinite;
}

#reel3 {
    animation: reelSpin3 4s linear infinite;
}

/* Neon Effects Overlay */
.neon-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(255, 255, 0, 0.15) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%, 
            rgba(255, 0, 128, 0.15) 0%,
            transparent 50%),
        linear-gradient(45deg, 
            transparent 30%,
            rgba(0, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: neonPulse 2s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Updated Coin Slot for Control Panel */
.coin-slot {
    width: 50px;
    height: 12px;
    background: var(--dark-bg);
    border: 2px solid var(--neon-yellow);
    border-radius: 15px;
    position: relative;
    box-shadow: 
        0 0 10px var(--neon-yellow),
        inset 0 0 8px rgba(0, 0, 0, 0.8);
    animation: coinSlotGlow 2s ease-in-out infinite alternate;
}

.coin-slot::before {
    content: '💰';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    animation: 
        coinFloat 3s ease-in-out infinite,
        coinGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px var(--neon-yellow));
}

.coin-slot::after {
    content: 'COIN';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.35rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 5px var(--neon-yellow);
    white-space: nowrap;
}

/* Updated Lever for Control Panel */
.lever {
    width: 15px;
    height: 50px;
    background: 
        linear-gradient(180deg, 
            var(--neon-cyan), 
            #666, 
            var(--dark-panel));
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 0 12px var(--neon-cyan),
        inset 0 0 8px rgba(0, 255, 255, 0.2);
    animation: leverPull 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.lever::before {
    content: '⚡';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    animation: leverSpark 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 6px var(--neon-cyan));
}

.lever::after {
    content: 'PULL';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.35rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Enhanced Animations */
@keyframes machineGlow {
    0% { filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 50px rgba(255, 0, 128, 0.6)); }
}

@keyframes screenFlicker {
    0%, 100% { 
        filter: brightness(1) contrast(1);
    }
    50% { 
        filter: brightness(1.1) contrast(1.1);
    }
}

@keyframes bezelFlicker {
    0%, 100% { 
        box-shadow: 
            0 0 15px var(--neon-yellow),
            inset 0 0 15px rgba(0, 0, 0, 0.8);
    }
    50% { 
        box-shadow: 
            0 0 25px var(--neon-cyan),
            0 0 40px rgba(0, 255, 255, 0.4),
            inset 0 0 20px rgba(0, 0, 0, 0.8);
    }
}

@keyframes borderRainbow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Slot Machine Animations */
@keyframes reelSpin1 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-240px); }
}

@keyframes reelSpin2 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-240px); }
}

@keyframes reelSpin3 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-240px); }
}

@keyframes symbolGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.6));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1));
        transform: scale(1.05);
    }
}

@keyframes neonPulse {
    0% { 
        opacity: 0.6;
        filter: hue-rotate(0deg);
    }
    100% { 
        opacity: 0.9;
        filter: hue-rotate(60deg);
    }
}

/* Coin Slot Animations */
@keyframes coinSlotGlow {
    0% { 
        box-shadow: 
            0 0 15px var(--neon-yellow),
            inset 0 0 10px rgba(0, 0, 0, 0.8);
    }
    100% { 
        box-shadow: 
            0 0 25px var(--neon-yellow),
            0 0 40px rgba(255, 255, 0, 0.6),
            inset 0 0 15px rgba(0, 0, 0, 0.8);
    }
}

@keyframes coinFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes coinGlow {
    0% { filter: drop-shadow(0 0 10px var(--neon-yellow)); }
    100% { filter: drop-shadow(0 0 20px var(--neon-yellow)); }
}

/* Lever Animations */
@keyframes leverPull {
    0%, 70% { transform: rotate(0deg); }
    80% { transform: rotate(15deg); }
    90% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes leverSpark {
    0% { 
        opacity: 0.6;
        filter: drop-shadow(0 0 8px var(--neon-cyan));
    }
    100% { 
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--neon-cyan));
    }
}

/* New Machine Cabinet Animations */
@keyframes crownGlow {
    0% { 
        box-shadow: 
            0 0 25px var(--neon-pink),
            inset 0 0 20px rgba(255, 0, 128, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 40px var(--neon-yellow),
            inset 0 0 30px rgba(255, 255, 0, 0.3);
    }
}

@keyframes crownShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes crownLightBlink {
    0% { 
        opacity: 0.6;
        transform: scale(1);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes crownTextGlow {
    0% { 
        text-shadow: 
            0 0 10px white,
            0 0 20px var(--neon-cyan);
    }
    100% { 
        text-shadow: 
            0 0 15px white,
            0 0 30px var(--neon-pink);
    }
}

@keyframes panelLightBlink {
    0%, 50% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.3); }
}

@keyframes spinButtonGlow {
    0% { 
        box-shadow: 
            0 0 15px var(--neon-green),
            inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 25px var(--neon-green),
            0 0 40px rgba(57, 255, 20, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

@keyframes grillGlow {
    0% { 
        opacity: 0.4;
        filter: brightness(0.8);
    }
    100% { 
        opacity: 0.8;
        filter: brightness(1.2);
    }
}



/* Sections */
.section-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin: 60px 0 40px;
}

.title-outline {
    color: var(--comic-yellow);
    text-shadow: 
        -2px -2px 0px var(--dark-bg),
        2px -2px 0px var(--dark-bg),
        -2px 2px 0px var(--dark-bg),
        2px 2px 0px var(--dark-bg),
        0 0 20px var(--comic-yellow);
}

/* Rules Section */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.rule-card {
    background: var(--dark-panel);
    border: 3px solid var(--comic-blue);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 102, 255, 0.3),
        8px 8px 0px rgba(0, 102, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px rgba(0, 102, 255, 0.5),
        8px 8px 0px rgba(0, 102, 255, 0.2);
}

.rule-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--comic-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 15px var(--comic-red);
}

.rule-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1rem;
}

.rule-content p {
    font-size: 0.7rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rule-detail {
    font-size: 0.6rem;
    color: var(--comic-yellow);
    margin-top: 10px;
}

.highlight {
    color: var(--comic-orange);
    text-shadow: 0 0 5px var(--comic-orange);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-panel {
    background: var(--dark-panel);
    border: 3px solid var(--neon-green);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(57, 255, 20, 0.05);
}

.panel-header {
    background: var(--neon-green);
    color: var(--dark-bg);
    padding: 15px;
    text-align: center;
}

.panel-header h3 {
    font-size: 0.8rem;
}

.panel-content {
    padding: 25px;
    text-align: center;
}

.big-number {
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    margin-bottom: 10px;
    font-family: 'Press Start 2P', monospace;
}

.unit {
    font-size: 0.6rem;
    color: var(--neon-green);
    opacity: 0.8;
}

.address {
    font-size: 0.6rem;
    color: var(--neon-cyan);
    word-break: break-all;
    margin-bottom: 10px;
    background: rgba(0, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.time-ago {
    font-size: 0.5rem;
    color: var(--comic-yellow);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.time-part {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 1.5rem;
    color: var(--comic-red);
    text-shadow: 0 0 10px var(--comic-red);
}

.time-label {
    font-size: 0.5rem;
    color: var(--comic-red);
    margin-top: 5px;
}

.time-separator {
    font-size: 1.5rem;
    color: var(--comic-red);
    animation: blink 1s infinite;
}

.countdown-status {
    font-size: 0.5rem;
    color: var(--comic-yellow);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.5rem;
    color: var(--neon-green);
    opacity: 0.8;
}

.info-value {
    font-size: 0.7rem;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

/* ETH Display Styles */
.eth-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.eth-amount {
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 
        0 0 15px var(--neon-green),
        0 0 30px rgba(57, 255, 20, 0.6);
    font-family: 'Press Start 2P', monospace;
    text-align: center;
    animation: ethGlow 2s ease-in-out infinite alternate;
    transition: font-size 0.3s ease;
}

@keyframes ethGlow {
    0% { 
        text-shadow: 
            0 0 15px var(--neon-green),
            0 0 30px rgba(57, 255, 20, 0.6);
    }
    100% { 
        text-shadow: 
            0 0 25px var(--neon-green),
            0 0 40px rgba(57, 255, 20, 0.8),
            0 0 60px rgba(57, 255, 20, 0.4);
    }
}

/* Action Section */
.action-section {
    margin: 60px 0;
    text-align: center;
}

.action-card {
    background: var(--dark-panel);
    border: 4px solid var(--comic-purple);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 0 30px rgba(153, 51, 255, 0.3),
        8px 8px 0px rgba(153, 51, 255, 0.1);
}

.action-card h3 {
    color: var(--comic-purple);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--comic-purple);
}

.action-card p {
    font-size: 0.7rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contract-address {
    margin: 25px 0;
}

.address-label {
    display: block;
    font-size: 0.6rem;
    color: var(--comic-yellow);
    margin-bottom: 10px;
}

.address-display {
    background: var(--dark-bg);
    border: 2px solid var(--neon-cyan);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.6rem;
    color: var(--neon-cyan);
    word-break: break-all;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.3),
        inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.warning-box {
    background: rgba(255, 51, 102, 0.1);
    border: 2px solid var(--comic-red);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 0.6rem;
    line-height: 1.6;
}

/* Animations */
@keyframes glow-red {
    from { text-shadow: 4px 4px 0px var(--dark-bg), 0 0 20px var(--comic-red); }
    to { text-shadow: 4px 4px 0px var(--dark-bg), 0 0 30px var(--comic-red), 0 0 40px var(--comic-red); }
}

@keyframes glow-cyan {
    from { text-shadow: 4px 4px 0px var(--dark-bg), 0 0 20px var(--neon-cyan); }
    to { text-shadow: 4px 4px 0px var(--dark-bg), 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

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

@keyframes burn {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blinking {
    animation: blink 1.5s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .main-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .arcade-machine {
        width: 250px;
        height: 320px;
    }
    
    .screen {
        width: 200px;
        height: 160px;
    }
    
    .machine-body {
        width: 250px;
        height: 140px;
    }
    
    .container {
        padding: 15px;
    }
    
    .rule-card, .action-card {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: clamp(1.5rem, 12vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.2rem, 8vw, 2rem);
    }
    
    .arcade-machine {
        width: 200px;
        height: 260px;
    }
    
    .screen {
        width: 160px;
        height: 120px;
    }
    
    .token-icon {
        font-size: 2.5rem;
    }
    
    .machine-body {
        width: 200px;
        height: 120px;
    }
    
    .big-number {
        font-size: 1.5rem;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
} 

/* Crypto Icons in Slot Machine */
.crypto-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

/* ETH Icon specific styling */
.eth-icon {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(98, 126, 234, 0.8));
}

/* Base Icon specific styling */
.base-icon {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(0, 82, 255, 0.8));
}

/* Enhanced glow effect for crypto icons on hover */
.symbol:hover .crypto-icon {
    transform: scale(1.1);
}

.symbol:hover .eth-icon {
    filter: brightness(1.5) saturate(1.5) drop-shadow(0 0 15px rgba(98, 126, 234, 1)) drop-shadow(0 0 25px rgba(98, 126, 234, 0.6));
}

.symbol:hover .base-icon {
    filter: brightness(1.5) saturate(1.5) drop-shadow(0 0 15px rgba(0, 82, 255, 1)) drop-shadow(0 0 25px rgba(0, 82, 255, 0.6));
}

/* Animation enhancement for spinning icons */
.reel .eth-icon {
    animation: ethIconGlow 2s ease-in-out infinite alternate;
}

.reel .base-icon {
    animation: baseIconGlow 2s ease-in-out infinite alternate;
}

@keyframes ethIconGlow {
    0% {
        filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(98, 126, 234, 0.6));
    }
    50% {
        filter: brightness(1.4) saturate(1.4) drop-shadow(0 0 12px rgba(98, 126, 234, 0.8));
    }
    100% {
        filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(98, 126, 234, 0.6));
    }
}

@keyframes baseIconGlow {
    0% {
        filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(0, 82, 255, 0.6));
    }
    50% {
        filter: brightness(1.4) saturate(1.4) drop-shadow(0 0 12px rgba(0, 82, 255, 0.8));
    }
    100% {
        filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px rgba(0, 82, 255, 0.6));
    }
} 