:root {
    --frog-green: #32CD32;
    --gold: #FFD700;
    --dark: #1a1a1a
}

body {
    background: linear-gradient(to bottom, #0f4c3a, #1a5f3a);
    font-family: 'Comic Sans MS', cursive;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative
}

.jungle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1502086223501-1f1f3e1d8a7f?q=80&w=1974') center/cover no-repeat;
    opacity: .3;
    z-index: -2
}

.fog {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #0f4c3a);
    opacity: .7;
    z-index: -1
}

.navbar {
    background: rgba(0, 0, 0, .8) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 255, 0, .5);
    z-index: 1000
}

.market-cap {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 0 25px yellow, 0 0 50px orange;
    animation: pulse 2s infinite;
    font-weight: bold
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.nav-link {
    color: limegreen !important;
    font-weight: bold;
    transition: .3s
}

.nav-link:hover {
    color: yellow !important;
    transform: translateY(-3px)
}

.buy-btn {
    color: #00ff88 !important;
    animation: buyGlow 1.5s infinite alternate
}

@keyframes buyGlow {
    0% {
        text-shadow: 0 0 5px #00ff88
    }

    100% {
        text-shadow: 0 0 15px #00ff88, 0 0 25px #00ff88
    }
}

.scene {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: none;
    margin-top: 133px
}

.scene.active {
    display: block
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.frog {
    position: absolute;
    width: 90px;
    height: 85px;
    background: var(--frog-green);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .6);
    z-index: 5;
    cursor: pointer
}

.frog:hover {
    transform: scale(1.3);
    box-shadow: 0 0 40px yellow
}

.eye {
    position: absolute;
    top: 16px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%
}

.eye.left {
    left: 16px
}

.eye.right {
    right: 16px
}

.pupil {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%
}

.mouth {
    position: absolute;
    bottom: 18px;
    left: 22px;
    width: 46px;
    height: 18px;
    border-bottom: 6px solid darkgreen;
    border-radius: 50%
}

.speech-bubble {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .9);
    color: #006400;
    padding: 14px 22px;
    border-radius: 28px;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
    white-space: nowrap;
    pointer-events: none;
    z-index: 6
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border: 14px solid transparent;
    border-top-color: rgba(255, 255, 255, .9)
}

.sign {
    position: absolute;
    width: 160px;
    height: 90px;
    background: #fff;
    color: #00008B;
    border: 7px solid var(--gold);
    border-radius: 20px;
    text-align: center;
    padding: 12px;
    box-shadow: 0 0 30px yellow;
    z-index: 4;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.sign .range {
    font-size: 18px;
    color: #006400;
    margin: 4px 0;
    font-weight: bold
}

.sign .target {
    font-size: 12px;
    color: #8B0000;
    font-style: italic
}

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

.page {
    display: none;
    padding: 2rem 1rem;
    margin-top: 133px
}

.page.active {
    display: block
}

.vesting-table th,
.vesting-table td {
    border: 2px solid var(--gold);
    padding: 12px;
    text-align: center
}

.vesting-table th {
    background: rgba(0, 0, 0, .7);
    color: var(--gold)
}

.vesting-table td {
    background: rgba(0, 0, 0, .5)
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
    font-size: .9rem
}

@media(max-width:768px) {
    .market-cap {
        font-size: 1.4rem
    }

    .frog {
        width: 70px;
        height: 65px
    }

    .sign {
        width: 120px;
        height: 70px;
        font-size: 13px;
        padding: 8px
    }
}