@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Bungee&family=Press+Start+2P&display=swap');

:root {
    /* Vibrant colors from the hedgehog logo */
    --bright-blue: #00aeff; /* Bright blue hoodie */
    --vibrant-gold: #ffdc00; /* Vibrant gold throne */
    --neon-blue: #00f7ff; /* Bright "JUST HOLD" text */
    --pure-white: #ffffff; /* White fur */
    --pure-black: #000000; /* Black pants */
    
    /* Additional vibrant gaming palette */
    --neon-pink: #ff0099;
    --neon-purple: #8a00ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffff00;
    --neon-orange: #ff6d00;
    
    /* UI colors */
    --game-bg: #0c002e;
    --card-bg: rgba(31, 0, 82, 0.7);
    --bg-gradient: linear-gradient(135deg, #150057, #0c002e, #000814);
    
    /* Game effect colors */
    --health-bar: #00ff88;
    --mana-bar: #00aeff;
    --exp-bar: #8a00ff;
    --gold-bar: #ffdc00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: var(--bg-gradient);
    color: var(--pure-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Arcade-Style Neon Glow Effects */
.neon-text-blue {
    color: var(--bright-blue);
    text-shadow: 0 0 5px var(--bright-blue), 
                 0 0 10px var(--bright-blue), 
                 0 0 20px var(--bright-blue);
}

.neon-text-gold {
    color: var(--vibrant-gold);
    text-shadow: 0 0 5px var(--vibrant-gold), 
                 0 0 10px var(--vibrant-gold), 
                 0 0 20px var(--vibrant-gold);
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink), 
                 0 0 10px var(--neon-pink), 
                 0 0 20px var(--neon-pink);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green), 
                 0 0 10px var(--neon-green), 
                 0 0 20px var(--neon-green);
}

.neon-box {
    box-shadow: 0 0 5px var(--neon-blue),
                0 0 10px var(--neon-blue),
                0 0 20px var(--neon-blue);
}

.neon-box-gold {
    box-shadow: 0 0 5px var(--vibrant-gold),
                0 0 10px var(--vibrant-gold),
                0 0 20px var(--vibrant-gold);
}

/* Arcade Lights Background */
.arcade-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.5;
}

.arcade-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite alternate, float 15s infinite ease-in-out;
}

.arcade-light:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--bright-blue);
    top: 20%;
    left: 10%;
    opacity: 0.2;
    animation-delay: 0s;
}

.arcade-light:nth-child(2) {
    width: 250px;
    height: 250px;
    background: var(--neon-purple);
    top: 60%;
    left: 20%;
    opacity: 0.15;
    animation-delay: 1s;
}

.arcade-light:nth-child(3) {
    width: 350px;
    height: 350px;
    background: var(--vibrant-gold);
    bottom: 10%;
    right: 15%;
    opacity: 0.2;
    animation-delay: 2s;
}

.arcade-light:nth-child(4) {
    width: 200px;
    height: 200px;
    background: var(--neon-pink);
    top: 15%;
    right: 10%;
    opacity: 0.15;
    animation-delay: 3s;
}

.arcade-light:nth-child(5) {
    width: 280px;
    height: 280px;
    background: var(--neon-green);
    top: 50%;
    right: 25%;
    opacity: 0.1;
    animation-delay: 2.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(40px);
    }
    75% {
        transform: translateY(30px) translateX(20px);
    }
}

/* Laser Grid Floor (like arcade laser games) */
.laser-grid {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: -1;
    background-size: 50px 50px;
    opacity: 0.2;
    perspective: 500px;
    transform-origin: bottom;
    transform: perspective(1000px) rotateX(60deg);
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, var(--neon-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--neon-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 15s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Floating Digital Coins */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vibrant-gold);
    box-shadow: 0 0 10px var(--vibrant-gold), 0 0 20px var(--vibrant-gold);
    animation: float-coin 10s infinite ease-in-out;
    opacity: 0.5;
}

.coin:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.coin:nth-child(2) {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.coin:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.coin:nth-child(4) {
    top: 60%;
    right: 10%;
    animation-delay: 6s;
}

.coin:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float-coin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
}

/* Game-Style Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(12, 0, 46, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-blue);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vibrant-gold);
    box-shadow: 0 0 10px var(--vibrant-gold);
}

.logo-text {
    font-family: 'Bungee', cursive;
    font-size: 24px;
    color: var(--pure-white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--vibrant-gold);
}

/* Game Console Navigation */
.game-nav {
    display: flex;
    gap: 40px;
}

.nav-button {
    position: relative;
    background: none;
    border: none;
    color: var(--pure-white);
    font-family: 'Press Start 2P', cursive;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-button::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-blue));
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
}

.nav-button:nth-child(2)::before {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    box-shadow: 0 0 10px rgba(138, 0, 255, 0.5);
}

.nav-button:nth-child(3)::before {
    background: linear-gradient(135deg, var(--vibrant-gold), var(--neon-orange));
    box-shadow: 0 0 10px rgba(255, 220, 0, 0.5);
}

.nav-button:nth-child(4)::before {
    background: linear-gradient(135deg, var(--neon-green), var(--bright-blue));
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-button i {
    position: absolute;
    top: 9px;
    font-size: 15px;
    z-index: 1;
}

.nav-button:hover {
    color: var(--pure-white);
    transform: translateY(-5px);
}

.nav-button:hover::before {
    transform: scale(1.2) rotate(15deg);
}

.buy-button {
    background: linear-gradient(135deg, var(--vibrant-gold), var(--neon-orange));
    border: none;
    color: var(--pure-black);
    font-family: 'Bungee', cursive;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 220, 0, 0.5);
    text-transform: uppercase;
}

.buy-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 220, 0, 0.8);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-blue));
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 102;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
}

.mobile-toggle i {
    color: var(--pure-white);
    font-size: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: rgba(12, 0, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 101;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 2px solid var(--neon-blue);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Game Title Screen */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.game-title {
    font-family: 'Bungee', cursive;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    color: var(--pure-white);
    text-shadow: 3px 3px 0 var(--neon-blue), 6px 6px 0 var(--bright-blue);
}

.game-subtitle {
    font-size: 24px;
    color: var(--vibrant-gold);
    text-shadow: 0 0 10px var(--vibrant-gold);
    margin-bottom: 30px;
    font-weight: 700;
}

.game-description {
    font-size: 18px;
    color: var(--pure-white);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.play-btn {
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-blue));
    border: none;
    color: var(--pure-white);
    font-family: 'Bungee', cursive;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.5);
    text-transform: uppercase;
}

.play-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 162, 255, 0.8);
}

.info-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid var(--neon-blue);
    color: var(--pure-white);
    font-family: 'Bungee', cursive;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 10px rgba(0, 228, 255, 0.3);
    text-transform: uppercase;
}

.info-btn:hover {
    background: rgba(0, 228, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 228, 255, 0.5);
}

/* Hero Character */
.hero-character {
    position: relative;
    display: flex;
    justify-content: center;
}

.character-img {
    max-width: 100%;
    border: 3px solid var(--vibrant-gold);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 220, 0, 0.5);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.character-img:hover {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 220, 0, 0.8);
}

.character-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 220, 0, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* Game Stats */
.game-stats {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-card {
    background: rgba(31, 0, 82, 0.6);
    backdrop-filter: blur(5px);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:nth-child(2) {
    border-color: var(--neon-purple);
}

.stat-card:nth-child(3) {
    border-color: var(--vibrant-gold);
}

.stat-card:nth-child(4) {
    border-color: var(--neon-green);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.stat-card:nth-child(2) .stat-value {
    color: var(--neon-purple);
}

.stat-card:nth-child(3) .stat-value {
    color: var(--vibrant-gold);
}

.stat-card:nth-child(4) .stat-value {
    color: var(--neon-green);
}

.stat-label {
    font-family: 'Bungee', cursive;
    font-size: 14px;
    color: var(--pure-white);
    text-transform: uppercase;
}

/* Features Section - Game Levels */
.features {
    padding: 100px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.level-tag {
    display: inline-block;
    background: var(--vibrant-gold);
    color: var(--pure-black);
    font-family: 'Bungee', cursive;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.level-tag::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 220, 0, 0.3);
    border-radius: 25px;
    z-index: -1;
    animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.section-title {
    font-family: 'Bungee', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--bright-blue), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--pure-white);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Arcade Game Cards */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.game-feature-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 174, 255, 0.2), rgba(138, 0, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--neon-blue);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bright-blue);
    border-radius: 15px;
    font-size: 30px;
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.7);
    position: relative;
    z-index: 1;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(0, 174, 255, 0.3);
    border-radius: 20px;
    z-index: -1;
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.game-feature-card:nth-child(2) .card-header {
    background: linear-gradient(135deg, rgba(138, 0, 255, 0.2), rgba(255, 0, 153, 0.2));
    border-bottom-color: var(--neon-purple);
}

.game-feature-card:nth-child(2) .card-icon {
    background: var(--neon-purple);
    box-shadow: 0 0 20px rgba(138, 0, 255, 0.7);
}

.game-feature-card:nth-child(2) .card-icon::before {
    background: rgba(138, 0, 255, 0.3);
}

.game-feature-card:nth-child(3) .card-header {
    background: linear-gradient(135deg, rgba(255, 220, 0, 0.2), rgba(255, 109, 0, 0.2));
    border-bottom-color: var(--vibrant-gold);
}

.game-feature-card:nth-child(3) .card-icon {
    background: var(--vibrant-gold);
    box-shadow: 0 0 20px rgba(255, 220, 0, 0.7);
}

.game-feature-card:nth-child(3) .card-icon::before {
    background: rgba(255, 220, 0, 0.3);
}

.game-feature-card:nth-child(4) .card-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 174, 255, 0.2));
    border-bottom-color: var(--neon-green);
}

.game-feature-card:nth-child(4) .card-icon {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.7);
}

.game-feature-card:nth-child(4) .card-icon::before {
    background: rgba(0, 255, 136, 0.3);
}

.game-feature-card:nth-child(5) .card-header {
    background: linear-gradient(135deg, rgba(255, 0, 153, 0.2), rgba(255, 220, 0, 0.2));
    border-bottom-color: var(--neon-pink);
}

.game-feature-card:nth-child(5) .card-icon {
    background: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.7);
}

.game-feature-card:nth-child(5) .card-icon::before {
    background: rgba(255, 0, 153, 0.3);
}

.game-feature-card:nth-child(6) .card-header {
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.2), rgba(255, 255, 0, 0.2));
    border-bottom-color: var(--neon-orange);
}

.game-feature-card:nth-child(6) .card-icon {
    background: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 109, 0, 0.7);
}

.game-feature-card:nth-child(6) .card-icon::before {
    background: rgba(255, 109, 0, 0.3);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-family: 'Bungee', cursive;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.power-meter {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.power-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--bright-blue), var(--neon-blue));
    width: 85%;
}

.game-feature-card:nth-child(2) .power-fill {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    width: 75%;
}

.game-feature-card:nth-child(3) .power-fill {
    background: linear-gradient(90deg, var(--vibrant-gold), var(--neon-orange));
    width: 90%;
}

.game-feature-card:nth-child(4) .power-fill {
    background: linear-gradient(90deg, var(--neon-green), var(--bright-blue));
    width: 80%;
}

.game-feature-card:nth-child(5) .power-fill {
    background: linear-gradient(90deg, var(--neon-pink), var(--vibrant-gold));
    width: 70%;
}

.game-feature-card:nth-child(6) .power-fill {
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
    width: 65%;
}

.card-action {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Bungee', cursive;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-action:hover {
    background: rgba(0, 174, 255, 0.2);
    transform: translateY(-5px);
}

.game-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Tokenomics Section - Treasure Chest */
.tokenomics {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.token-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 3D Rotating Treasure Coin */
.treasure-container {
    position: relative;
    perspective: 1000px;
}

.token-3d {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotate-token 20s linear infinite;
}

@keyframes rotate-token {
    0% {
        transform: rotateY(0deg) rotateX(20deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(20deg);
    }
}

.token-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--vibrant-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--vibrant-gold);
    font-family: 'Bungee', cursive;
    font-size: 70px;
    backface-visibility: hidden;
    background: radial-gradient(circle at center, var(--game-bg), transparent);
    box-shadow: 0 0 50px var(--vibrant-gold);
    overflow: hidden;
}

.token-face.front {
    transform: translateZ(10px);
}

.token-face.back {
    transform: rotateY(180deg) translateZ(10px);
}

.token-edge {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    border-radius: 50%;
}

.edge-segment {
    position: absolute;
    width: 100%;
    height: 20px;
    background: var(--neon-orange);
    transform-origin: center;
}

.segment-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    z-index: 1;
    border-radius: 50%;
    animation: shine 3s infinite alternate;
}

@keyframes shine {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

.token-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bungee', cursive;
    font-size: 36px;
    color: var(--vibrant-gold);
    text-shadow: 0 0 10px var(--vibrant-gold);
    z-index: 2;
    width: 100%;
    text-align: center;
}

.token-label {
    position: absolute;
    top: calc(50% + 40px);
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: var(--pure-white);
}

/* Token Distribution Pie */
.token-distributions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.dist-item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.dist-item:nth-child(1) {
    border-color: var(--bright-blue);
    background: radial-gradient(circle, rgba(0, 174, 255, 0.3), var(--game-bg));
}

.dist-item:nth-child(2) {
    border-color: var(--neon-purple);
    background: radial-gradient(circle, rgba(138, 0, 255, 0.3), var(--game-bg));
}

.dist-item:nth-child(3) {
    border-color: var(--vibrant-gold);
    background: radial-gradient(circle, rgba(255, 220, 0, 0.3), var(--game-bg));
}

.dist-item:nth-child(4) {
    border-color: var(--neon-pink);
    background: radial-gradient(circle, rgba(255, 0, 153, 0.3), var(--game-bg));
}

.dist-percent {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: var(--pure-white);
}

.dist-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.2;
    padding: 0 5px;
}

/* Token Details */
.token-details {
    background: rgba(31, 0, 82, 0.5);
    border-radius: 20px;
    padding: 40px;
    border-top: 5px solid var(--vibrant-gold);
    position: relative;
    overflow: hidden;
}

.token-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 220, 0, 0.1), 
        rgba(0, 174, 255, 0.05),
        rgba(138, 0, 255, 0.1));
    z-index: -1;
}

.token-details-title {
    font-family: 'Bungee', cursive;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--vibrant-gold);
    text-shadow: 0 0 10px rgba(255, 220, 0, 0.3);
    position: relative;
}

.token-details-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--vibrant-gold);
    border-radius: 2px;
}

.token-item {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
    gap: 20px;
}

.token-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--vibrant-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pure-black);
    font-size: 20px;
    flex-shrink: 0;
}

.token-item:nth-child(2) .token-icon {
    background: var(--bright-blue);
}

.token-item:nth-child(3) .token-icon {
    background: var(--neon-purple);
}

.token-item:nth-child(4) .token-icon {
    background: var(--neon-green);
}

.token-info {
    flex-grow: 1;
}

.token-name {
    font-family: 'Bungee', cursive;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.token-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.token-stat {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--vibrant-gold);
    padding: 5px 10px;
    background: rgba(255, 220, 0, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 220, 0, 0.3);
}

.token-item:nth-child(2) .token-stat {
    color: var(--bright-blue);
    background: rgba(0, 174, 255, 0.1);
    border-color: rgba(0, 174, 255, 0.3);
}

.token-item:nth-child(3) .token-stat {
    color: var(--neon-purple);
    background: rgba(138, 0, 255, 0.1);
    border-color: rgba(138, 0, 255, 0.3);
}

.token-item:nth-child(4) .token-stat {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

/* Roadmap Section - Game Progression */
.roadmap {
    padding: 100px 0;
    position: relative;
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.progress-path {
    position: relative;
    padding: 30px 0;
}

.path-line {
    position: absolute;
    top: 0;
    left: calc(50% - 5px);
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--bright-blue), 
        var(--neon-purple),
        var(--vibrant-gold),
        var(--neon-green));
    border-radius: 5px;
    z-index: 1;
}

/* Level Milestones */
.milestone {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.milestone:last-child {
    margin-bottom: 0;
}

.milestone:nth-child(odd) {
    justify-content: flex-start;
}

.milestone:nth-child(even) {
    justify-content: flex-end;
}

.milestone-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bright-blue);
    top: 20px;
    left: calc(50% - 25px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pure-white);
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.7);
    z-index: 3;
}

.milestone:nth-child(2) .milestone-marker {
    background: var(--neon-purple);
    box-shadow: 0 0 20px rgba(138, 0, 255, 0.7);
}

.milestone:nth-child(3) .milestone-marker {
    background: var(--vibrant-gold);
    box-shadow: 0 0 20px rgba(255, 220, 0, 0.7);
}

.milestone:nth-child(4) .milestone-marker {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.7);
}

.milestone-content {
    width: 45%;
    background: rgba(31, 0, 82, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    border-top: 4px solid var(--bright-blue);
    position: relative;
    transition: all 0.3s ease;
}

.milestone:nth-child(2) .milestone-content {
    border-top-color: var(--neon-purple);
}

.milestone:nth-child(3) .milestone-content {
    border-top-color: var(--vibrant-gold);
}

.milestone:nth-child(4) .milestone-content {
    border-top-color: var(--neon-green);
}

.milestone-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--bright-blue);
    top: 45px;
}

.milestone:nth-child(odd) .milestone-content::before {
    right: -30px;
}

.milestone:nth-child(even) .milestone-content::before {
    left: -30px;
}

.milestone:nth-child(2) .milestone-content::before {
    background: var(--neon-purple);
}

.milestone:nth-child(3) .milestone-content::before {
    background: var(--vibrant-gold);
}

.milestone:nth-child(4) .milestone-content::before {
    background: var(--neon-green);
}

.milestone:hover .milestone-content {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.milestone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.level-badge {
    display: inline-block;
    background: rgba(0, 174, 255, 0.2);
    color: var(--bright-blue);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    border: 1px solid rgba(0, 174, 255, 0.3);
}

.milestone:nth-child(2) .level-badge {
    background: rgba(138, 0, 255, 0.2);
    color: var(--neon-purple);
    border-color: rgba(138, 0, 255, 0.3);
}

.milestone:nth-child(3) .level-badge {
    background: rgba(255, 220, 0, 0.2);
    color: var(--vibrant-gold);
    border-color: rgba(255, 220, 0, 0.3);
}

.milestone:nth-child(4) .level-badge {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    border-color: rgba(0, 255, 136, 0.3);
}

.milestone-status {
    font-family: 'Bungee', cursive;
    font-size: 14px;
    color: var(--pure-white);
    padding: 5px 10px;
    border-radius: 5px;
    background: var(--neon-green);
}

.status-completed {
    background: var(--neon-green);
    color: var(--pure-black);
}

.status-current {
    background: var(--bright-blue);
    color: var(--pure-white);
}

.status-upcoming {
    background: var(--neon-purple);
    color: var(--pure-white);
}

.status-future {
    background: var(--vibrant-gold);
    color: var(--pure-black);
}

.milestone-title {
    font-family: 'Bungee', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.milestone-list {
    list-style-type: none;
}

.milestone-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.milestone-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bright-blue);
    font-weight: bold;
}

.milestone:nth-child(2) .milestone-list li::before {
    color: var(--neon-purple);
}

.milestone:nth-child(3) .milestone-list li::before {
    color: var(--vibrant-gold);
}

.milestone:nth-child(4) .milestone-list li::before {
    color: var(--neon-green);
}

/* Community Section - Game Guild */
.community {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.community-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1400/800');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(5px);
    z-index: -1;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guild-card {
    background: rgba(31, 0, 82, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 174, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guild-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 174, 255, 0.1), 
        rgba(138, 0, 255, 0.1),
        rgba(255, 220, 0, 0.1));
    z-index: -1;
}

.guild-badge {
    display: inline-block;
    background: var(--bright-blue);
    color: var(--pure-white);
    font-family: 'Bungee', cursive;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.guild-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(0, 174, 255, 0.3);
    border-radius: 60px;
    z-index: -1;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.guild-title {
    font-family: 'Bungee', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--pure-white);
    text-shadow: 3px 3px 0 var(--neon-blue);
}

.guild-title span {
    color: var(--vibrant-gold);
    text-shadow: 3px 3px 0 var(--neon-orange);
}

.guild-description {
    font-size: 18px;
    color: var(--pure-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Guild Actions */
.guild-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.action-btn {
    background: var(--bright-blue);
    border: none;
    color: var(--pure-white);
    font-family: 'Bungee', cursive;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.action-primary {
    background: var(--vibrant-gold);
    color: var(--pure-black);
    box-shadow: 0 0 20px rgba(255, 220, 0, 0.3);
}

.action-primary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 220, 0, 0.5);
}

.action-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid var(--neon-blue);
    color: var(--pure-white);
    box-shadow: 0 0 10px rgba(0, 228, 255, 0.2);
}

.action-secondary:hover {
    background: rgba(0, 228, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 228, 255, 0.3);
}

/* Communication Channels */
.social-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background: rgba(31, 0, 82, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bright-blue);
}

.channel-card:nth-child(2) {
    border-color: var(--neon-purple);
}

.channel-card:nth-child(3) {
    border-color: var(--vibrant-gold);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bright-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.5);
}

.channel-card:nth-child(2) .channel-icon {
    background: var(--neon-purple);
    box-shadow: 0 0 20px rgba(138, 0, 255, 0.5);
}

.channel-card:nth-child(3) .channel-icon {
    background: var(--vibrant-gold);
    box-shadow: 0 0 20px rgba(255, 220, 0, 0.5);
}

.channel-name {
    font-family: 'Bungee', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.channel-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.channel-link {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 174, 255, 0.1);
    color: var(--bright-blue);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 255, 0.3);
    font-family: 'Bungee', cursive;
    font-size: 14px;
}

.channel-card:nth-child(2) .channel-link {
    background: rgba(138, 0, 255, 0.1);
    color: var(--neon-purple);
    border-color: rgba(138, 0, 255, 0.3);
}

.channel-card:nth-child(3) .channel-link {
    background: rgba(255, 220, 0, 0.1);
    color: var(--vibrant-gold);
    border-color: rgba(255, 220, 0, 0.3);
}

.channel-link:hover {
    background: rgba(0, 174, 255, 0.2);
    transform: translateY(-5px);
}

.channel-card:nth-child(2) .channel-link:hover {
    background: rgba(138, 0, 255, 0.2);
}

.channel-card:nth-child(3) .channel-link:hover {
    background: rgba(255, 220, 0, 0.2);
}

/* Footer */
footer {
    background: rgba(5, 0, 20, 0.9);
    padding: 100px 0 30px;
    border-top: 3px solid var(--neon-blue);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 174, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bright-blue);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 255, 0.3);
}

.footer-social a:hover {
    background: var(--bright-blue);
    color: var(--pure-white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 174, 255, 0.3);
}

.footer-heading {
    font-family: 'Bungee', cursive;
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 3px;
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 70px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Game-Style Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--vibrant-gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pure-black);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 0 15px rgba(255, 220, 0, 0.5);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 220, 0, 0.7);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-container {
        gap: 30px;
    }
    
    .game-title {
        font-size: 48px;
    }
    
    .token-3d {
        width: 250px;
        height: 250px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .game-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-character {
        order: 0;
        margin-bottom: 40px;
    }
    
    .character-img {
        max-width: 400px;
    }
    
    .game-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .game-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .token-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .guild-card {
        padding: 40px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .desktop-button{
        display: none;
    }
    .hero {
        padding: 120px 0 60px;
    }
    
    .game-title {
        font-size: 36px;
    }
    
    .game-subtitle {
        font-size: 20px;
    }
    
    .game-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .play-btn, .info-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .milestone-content {
        width: 80%;
        padding: 20px;
    }
    
    .milestone-title {
        font-size: 20px;
    }
    
    .milestone:nth-child(odd),
    .milestone:nth-child(even) {
        justify-content: center;
    }
    
    .path-line,
    .milestone-marker {
        left: 20px;
    }
    
    .milestone-marker {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .milestone-content::before {
        width: 20px;
    }
    
    .milestone:nth-child(odd) .milestone-content::before,
    .milestone:nth-child(even) .milestone-content::before {
        left: -20px;
    }
    
    .guild-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .guild-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 576px) {
    .logo-text {
        font-size: 20px;
    }
    
    .game-title {
        font-size: 30px;
    }
    
    .character-img {
        max-width: 280px;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .token-3d {
        width: 200px;
        height: 200px;
    }
    
    .token-distributions {
        gap: 15px;
    }
    
    .dist-item {
        width: 80px;
        height: 80px;
    }
    
    .dist-percent {
        font-size: 16px;
    }
    
    .dist-label {
        font-size: 10px;
    }
    
    .token-details {
        padding: 30px 20px;
    }
    
    .token-details-title {
        font-size: 24px;
    }
    
    .milestone-content {
        width: 90%;
        padding: 15px;
    }
    
    .milestone-status {
        display: block;
        margin-top: 10px;
    }
    
    .guild-card {
        padding: 30px 20px;
    }
    
    .guild-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

 /* Loading Page Styles */
 .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0020 0%, #150057 50%, #0a0020 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loading-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 30px;
}

.spike-lounge {
    margin-bottom: 30px;
    position: relative;
}

.lounge-title {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--vibrant-gold);
    text-shadow: 0 0 10px var(--vibrant-gold), 0 0 20px var(--vibrant-gold);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.lounge-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hedgehog-host {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.7s, spin 5s infinite linear;
}

.hedgehog-host img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--vibrant-gold);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px rgba(0, 174, 255, 0.5);
}

.hedgehog-energy {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--bright-blue);
    animation: pulseEnergy 2s infinite alternate;
}

@keyframes pulseEnergy {
    0% {
        box-shadow: 0 0 10px var(--bright-blue), 0 0 20px var(--bright-blue);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px var(--bright-blue), 0 0 40px var(--bright-blue);
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.velvet-rope {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, rgba(150,0,24,0) 0%, rgba(180,0,36,1) 20%, rgba(220,0,36,1) 50%, rgba(180,0,36,1) 80%, rgba(150,0,24,0) 100%);
    position: relative;
    margin: 40px 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.9s;
}

.velvet-rope:before, .velvet-rope:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 30px;
    background: var(--vibrant-gold);
    top: -10px;
    box-shadow: 0 0 10px var(--vibrant-gold);
}

.velvet-rope:before {
    left: 20%;
}

.velvet-rope:after {
    right: 20%;
}

.loading-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 40px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--bright-blue), var(--neon-purple), var(--vibrant-gold));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: gradientShift 2s linear infinite, loadProgress 3.5s ease-out forwards;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.loading-tip {
    margin-top: 20px;
    font-family: 'Fredoka', sans-serif;
    font-style: italic;
    color: var(--pure-white);
    opacity: 0.8;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.3s, tipChange 12s infinite;
}

@keyframes tipChange {
    0%, 20% {
        opacity: 1;
    }
    25%, 45% {
        opacity: 0;
    }
    50%, 70% {
        opacity: 1;
    }
    75%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.swipe-to-enter {
    margin-top: 40px;
    color: var(--neon-blue);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s, pulse 2s infinite alternate;
}

.swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.swipe-arrow {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--neon-blue);
    animation: swipeMotion 1.5s infinite;
}

@keyframes swipeMotion {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

.crystal-light {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-purple);
    animation: flicker 4s infinite alternate;
}

.crystal-light:nth-child(1) {
    top: 10%;
    left: 10%;
    background: var(--neon-pink);
    animation-delay: 0.5s;
}

.crystal-light:nth-child(2) {
    top: 20%;
    right: 15%;
    background: var(--bright-blue);
    animation-delay: 1s;
}

.crystal-light:nth-child(3) {
    bottom: 15%;
    left: 20%;
    background: var(--neon-green);
    animation-delay: 1.5s;
}

.crystal-light:nth-child(4) {
    bottom: 25%;
    right: 10%;
    background: var(--vibrant-gold);
    animation-delay: 2s;
}

@keyframes flicker {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
    }
    50% {
        opacity: 0.9;
        box-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lounge-title {
        font-size: 2.5rem;
    }
    
    .hedgehog-host {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .lounge-title {
        font-size: 2rem;
    }
    
    .hedgehog-host {
        width: 120px;
        height: 120px;
    }
}