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

:root {
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --neon-orange: #ff8800;
    --dark-bg: #000000;
    --card-bg: rgba(20, 20, 20, 0.8);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Background with Gradient Cards */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #000033 100%);
}

/* Animated Gradient Orbs Background */
@keyframes gradient-orb-shift {
    0%, 100% {
        background: radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.3) 0%, transparent 50%);
    }
    25% {
        background: radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.3) 0%, transparent 50%);
    }
    50% {
        background: radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.3) 0%, transparent 50%);
    }
    75% {
        background: radial-gradient(circle at 60% 30%, rgba(255, 255, 0, 0.3) 0%, transparent 50%);
    }
}

.animated-gradient-orb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: gradient-orb-shift 8s ease-in-out infinite;
}

.floating-cards-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-card {
    position: absolute;
    border-radius: 20px;
    filter: blur(100px);
    opacity: 0.6;
    animation: float-cards 20s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-card:nth-child(1) {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #ff006e, #ffb700);
    top: 10%;
    left: 10%;
    filter: blur(80px);  /* Less blur for the card with logo */
}

.card-logo {
    width: 150px;
    height: 150px;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    animation: pulse-logo 3s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gradient-card:nth-child(2) {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    top: 40%;
    right: 15%;
    animation-delay: -5s;
}

.gradient-card:nth-child(3) {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #00ff88, #00d2ff);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float-cards {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

.hero-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    animation: fade-in-up 1.2s ease-out;
}

.hero-title {
    font-family: 'Black Ops One', cursive;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: 'Black Ops One', cursive;
    font-size: clamp(3rem, 12vw, 10rem);
    line-height: 0.9;
}

.holographic-text {
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        var(--neon-green), 
        var(--neon-cyan), 
        var(--neon-yellow), 
        var(--neon-pink));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px currentColor);
    animation: gradient-shift 3s ease infinite;
}

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

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 60px;
    animation: fade-in-scale 1.5s ease-out 0.5s both, float-rotate 6s ease-in-out infinite;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg) scale(1.01);
    }
    75% {
        transform: translateY(-15px) rotate(1deg) scale(1.03);
    }
}

.glow-layer {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.glow-1 {
    background: conic-gradient(from 0deg, 
        var(--neon-pink), 
        var(--neon-green), 
        var(--neon-cyan), 
        var(--neon-yellow), 
        var(--neon-pink));
    animation: spin 8s linear infinite, pulse-glow 3s ease-in-out infinite;
}

.glow-2 {
    background: conic-gradient(from 180deg, 
        var(--neon-cyan), 
        var(--neon-pink), 
        var(--neon-yellow), 
        var(--neon-green), 
        var(--neon-cyan));
    animation: spin 6s linear infinite reverse, pulse-glow 4s ease-in-out infinite 0.5s;
}

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

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.pug-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hue-rotate 4s infinite;
}

@keyframes hue-rotate {
    0%, 100% {
        filter: hue-rotate(0deg) saturate(150%) brightness(1);
    }
    25% {
        filter: hue-rotate(90deg) saturate(200%) brightness(1.1);
    }
    50% {
        filter: hue-rotate(180deg) saturate(150%) brightness(1);
    }
    75% {
        filter: hue-rotate(270deg) saturate(200%) brightness(1.1);
    }
}

/* Enhanced floating particles */
.floating-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float-particle 10s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(var(--x-move), -100px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(calc(var(--x-move) * -0.5), -50px) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translate(var(--x-move), -150px) scale(1.3);
        opacity: 0.6;
    }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: orbit 8s linear infinite;
    filter: drop-shadow(0 0 20px currentColor);
}

.icon-eye {
    color: var(--neon-pink);
    animation-delay: 0s;
}

.icon-zap {
    color: var(--neon-green);
    animation-delay: 2s;
}

.icon-star {
    color: var(--neon-cyan);
    animation-delay: 4s;
}

.icon-game {
    color: var(--neon-yellow);
    animation-delay: 6s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

/* Hero Content */
.hero-tagline {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: fade-in-up 1.5s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fade-in-up 1.5s ease-out 1s both;
}

.btn {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.rainbow-bg {
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        var(--neon-green), 
        var(--neon-cyan), 
        var(--neon-yellow));
    background-size: 400% 400%;
    animation: gradient-shift 2s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: white;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    animation: fade-in-up 1.5s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px currentColor);
    animation: pulse-glow 2s ease-in-out infinite;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 30px currentColor);
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Black Ops One', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.8);
}

/* $DIABLO Section */
.diablo-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at top, rgba(255, 0, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(0, 255, 0, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, rgba(10, 0, 30, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.diablo-header {
    text-align: center;
    margin-bottom: 60px;
}

.diablo-title {
    font-size: 5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff00ff, #00ff00, #00ffff, #ffff00, #ff0080);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.diablo-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.diablo-content {
    max-width: 1200px;
    margin: 0 auto;
}

.diablo-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #00ff00, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.diablo-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: center;
}

.diablo-description p {
    margin-bottom: 20px;
}

.highlight-pink { color: #ff00ff; font-weight: bold; text-shadow: 0 0 10px #ff00ff; }
.highlight-green { color: #00ff00; font-weight: bold; text-shadow: 0 0 10px #00ff00; }
.highlight-cyan { color: #00ffff; font-weight: bold; text-shadow: 0 0 10px #00ffff; }
.highlight-yellow { color: #ffff00; font-weight: bold; text-shadow: 0 0 10px #ffff00; }

/* Enhanced Pug Gallery */
.pug-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 80px 0;
    position: relative;
    min-height: 400px;
}

.pug-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pug-card.main-pug {
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 0, 255, 0.5);
    animation: float-rotate 6s ease-in-out infinite;
    z-index: 10;
}

.pug-card.side-pug {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.pug-card.side-pug.left {
    animation: float-left 5s ease-in-out infinite;
}

.pug-card.side-pug.right {
    animation: float-right 5s ease-in-out infinite;
}

/* Floating pug positions */
.pug-card.floating-pug {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 0, 0.3);
    opacity: 0.8;
}

.pug-card.floating-pug.top-left {
    top: -50px;
    left: 10%;
    animation: orbit-1 8s ease-in-out infinite;
}

.pug-card.floating-pug.top-right {
    top: -30px;
    right: 10%;
    animation: orbit-2 10s ease-in-out infinite;
}

.pug-card.floating-pug.bottom-left {
    bottom: -40px;
    left: 5%;
    animation: orbit-3 9s ease-in-out infinite;
}

.pug-card.floating-pug.bottom-right {
    bottom: -20px;
    right: 5%;
    animation: orbit-4 11s ease-in-out infinite;
}

.pug-card.floating-pug.center-top {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-bounce 7s ease-in-out infinite;
}

/* Orbital animations for floating pugs */
@keyframes orbit-1 {
    0%, 100% { 
        transform: rotate(0deg) translateX(80px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) translateX(80px) rotate(-180deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes orbit-2 {
    0%, 100% { 
        transform: rotate(0deg) translateX(100px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(-180deg) translateX(100px) rotate(180deg) scale(1.15);
        opacity: 1;
    }
}

@keyframes orbit-3 {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(50px) translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(100px) translateY(0) scale(1.2);
        opacity: 1;
    }
    75% { 
        transform: translateX(50px) translateY(30px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes orbit-4 {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translateX(-60px) translateY(-40px) rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translateX(-30px) translateY(-60px) rotate(240deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes float-bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(-50%) translateY(20px) scale(1.1);
        opacity: 0.9;
    }
    50% { 
        transform: translateX(-50%) translateY(-10px) scale(1.2);
        opacity: 1;
    }
    75% { 
        transform: translateX(-50%) translateY(10px) scale(1.1);
        opacity: 0.9;
    }
}

.pug-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pug-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4), transparent);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(5deg) scale(1.05); }
    75% { transform: translateY(10px) rotate(-5deg) scale(1.05); }
}

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

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

/* Token Utility */
.token-utility {
    margin: 80px 0;
}

.utility-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.utility-card {
    padding: 30px;
    background: rgba(75, 0, 130, 0.2);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.utility-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.utility-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.utility-card h4 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.utility-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Tokenomics */
.tokenomics {
    margin: 80px 0;
}

.tokenomics-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff00ff, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.token-stat {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), transparent);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.token-stat:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.token-stat .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.token-stat .stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    margin-bottom: 10px;
}

.token-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* Why DIABLO Matters */
.diablo-matters {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.matters-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.matters-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff00ff, #00ff00, #00ffff, #ffff00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logo-showcase {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.showcase-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.3));
}

.showcase-logo:hover {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.6));
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.tech-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 30px;
    color: var(--neon-cyan);
    font-weight: bold;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: 20px;
    animation: float-card 6s ease-in-out infinite;
}

.card-1 {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    top: 0;
    left: 0;
}

.card-2 {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    top: 50px;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

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

/* Art Gallery Section */
.art-gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.art-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.art-slides-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.art-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    transition: all 0.3s ease;
    display: none;
}

.art-slide.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.art-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-slide:hover .art-image {
    transform: scale(1.05);
}

/* Ensure 1920x1080 aspect ratio (16:9) */
/* 2x3 Grid Layout */

.art-overlay {
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.art-title {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.art-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation Arrows */
.art-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    font-size: 2rem;
    padding: 20px 25px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.art-nav:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 30px var(--neon-cyan);
}

.art-nav-prev {
    left: 20px;
}

.art-nav-next {
    right: 20px;
}

/* Dots Indicator */
.art-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.art-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.art-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.3);
}

.art-dot:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
}

/* Auto-slide animation */
@keyframes slideShow {
    0% { opacity: 0; transform: translateX(100%); }
    5% { opacity: 1; transform: translateX(0); }
    95% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-100%); }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.game-card-inner {
    height: 100%;
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-icon {
    font-size: 4rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.game-content {
    padding: 25px;
}

.game-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.game-btn {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Cosmic Roadmap */
/* Cosmic Roadmap - Figma Design Match */
.roadmap {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #1a0033 0%, #0a001a 50%, #000000 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Starfield */
.starfield {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.stars {
    background-image: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                      radial-gradient(2px 2px at 40px 70px, #eee, transparent),
                      radial-gradient(1px 1px at 50px 50px, #eee, transparent),
                      radial-gradient(1px 1px at 80px 10px, #eee, transparent),
                      radial-gradient(2px 2px at 130px 80px, #eee, transparent);
    background-size: 200px 200px;
    animation: stars-move 200s linear infinite;
}

.stars2 {
    background-image: radial-gradient(1px 1px at 10px 10px, #eee, transparent),
                      radial-gradient(1px 1px at 150px 150px, #eee, transparent),
                      radial-gradient(2px 2px at 60px 170px, #eee, transparent),
                      radial-gradient(1px 1px at 175px 180px, #eee, transparent);
    background-size: 200px 200px;
    animation: stars-move 300s linear infinite;
}

.stars3 {
    background-image: radial-gradient(1px 1px at 90px 90px, #eee, transparent),
                      radial-gradient(1px 1px at 130px 50px, #eee, transparent),
                      radial-gradient(1px 1px at 80px 120px, #eee, transparent);
    background-size: 200px 200px;
    animation: stars-move 400s linear infinite;
}

@keyframes stars-move {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* Shooting Stars */
.shooting-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, transparent, #00ffff, #ffffff);
    border-radius: 50%;
    animation: shooting-star-fall 3s linear infinite;
    opacity: 0;
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
    transform: translateX(-100%) translateY(1px);
}

.shooting-star:nth-child(1) {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.shooting-star:nth-child(2) {
    top: 30%;
    right: -10%;
    animation-delay: 1.8s;
}

.shooting-star:nth-child(3) {
    top: 50%;
    right: -5%;
    animation-delay: 3.5s;
}

.shooting-star:nth-child(4) {
    top: 70%;
    right: -8%;
    animation-delay: 5.2s;
}

@keyframes shooting-star-fall {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1000px) translateY(1000px) rotate(-45deg);
        opacity: 0;
    }
}

/* Floating Cosmic Particles */
.cosmic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    filter: blur(1px);
    animation: particle-float 10s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-delay: 3s; animation-duration: 20s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-delay: 5s; animation-duration: 16s; }
.particle:nth-child(7) { left: 70%; top: 50%; animation-delay: 6s; animation-duration: 13s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-delay: 7s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; top: 65%; animation-delay: 8s; animation-duration: 19s; }
.particle:nth-child(10) { left: 85%; top: 45%; animation-delay: 9s; animation-duration: 11s; }

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

/* Cosmic Title */
.cosmic-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #00ff00, #ffff00, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

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

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

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #00ffff 10%, #00ffff 90%, transparent);
    z-index: 1;
}

.timeline-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3) 10%, rgba(0, 255, 255, 0.3) 90%, transparent);
    filter: blur(10px);
    animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: timeline-item-appear 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }
.timeline-item:nth-child(7) { animation-delay: 1.4s; }
.timeline-item:nth-child(8) { animation-delay: 1.6s; }
.timeline-item:nth-child(9) { animation-delay: 1.8s; }

@keyframes timeline-item-appear {
    to {
        opacity: 1;
    }
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-item.left .timeline-card {
    margin-right: calc(50% + 40px);
    animation: slide-in-left 0.8s ease-out;
}

.timeline-item.right .timeline-card {
    margin-left: calc(50% + 40px);
    animation: slide-in-right 0.8s ease-out;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Timeline Nodes */
.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 3;
}

.node-core {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff1493;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.node-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ff1493;
    border-radius: 50%;
    animation: node-rotate 4s linear infinite;
}

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

.active-node .node-core {
    background: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

.active-node .node-ring {
    border-color: #00ff00;
}

.node-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #00ff00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Timeline Cards */
.timeline-card {
    position: relative;
    background: rgba(75, 0, 130, 0.2);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 0, 255, 0.6);
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2), transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.timeline-card:hover .card-glow {
    opacity: 1;
}

.timeline-card.active-card {
    border-color: rgba(0, 255, 0, 0.6);
    background: rgba(0, 255, 0, 0.1);
}

.timeline-card.active-card .card-glow {
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3), transparent);
    opacity: 1;
}

/* Phase Content */
.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.phase-label {
    font-size: 0.9rem;
    color: #ff00ff;
    font-weight: bold;
    letter-spacing: 2px;
}

.phase-status {
    font-size: 0.9rem;
    color: #00ff00;
}

.phase-icon {
    font-size: 1.5rem;
}

.phase-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phase-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-item.completed .phase-title {
    background: linear-gradient(45deg, #00ff00, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, 
        var(--neon-cyan) 0%, 
        transparent 100%);
    opacity: 0.6;
    z-index: 0;
}

.roadmap-item:last-child::after {
    display: none;
}

/* Player Entry Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    border: 2px solid;
    border-image: linear-gradient(45deg, #00ff00, #ff1493, #9d00ff) 1;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 0 50px rgba(157, 0, 255, 0.5),
        0 0 100px rgba(0, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 20, 147, 0.1);
    animation: modalPulse 2s infinite alternate;
}

@keyframes modalPulse {
    from {
        box-shadow: 
            0 0 50px rgba(157, 0, 255, 0.5),
            0 0 100px rgba(0, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 20, 147, 0.1);
    }
    to {
        box-shadow: 
            0 0 60px rgba(157, 0, 255, 0.7),
            0 0 120px rgba(0, 255, 0, 0.5),
            inset 0 0 40px rgba(255, 20, 147, 0.2);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.8));
    animation: float 3s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-header p {
    color: #00ff00;
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body {
    margin: 30px 0;
}

.player-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff00;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
}

.player-input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 0 10px rgba(0, 255, 0, 0.2);
}

.player-input::placeholder {
    color: rgba(0, 255, 0, 0.5);
    text-transform: none;
}

.input-hint {
    text-align: center;
    color: rgba(0, 255, 0, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-footer .btn {
    flex: 1;
    max-width: 200px;
}

/* Add shooting stars effect */
@keyframes shooting-star {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(calc(100vh + 100px)) rotate(45deg);
        opacity: 0;
    }
}

.roadmap .shooting-star {
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: shooting-star 3s linear infinite;
    z-index: 0;
}

.roadmap .shooting-star:nth-child(1) { top: 20%; animation-delay: 0s; }
.roadmap .shooting-star:nth-child(2) { top: 40%; animation-delay: 1s; }
.roadmap .shooting-star:nth-child(3) { top: 60%; animation-delay: 2s; }

/* Music Playlist Section */
.music-playlist {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.music-player-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    z-index: 0;
    opacity: 0.3;
}

.visualizer-bar {
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 2px;
    animation: pulse-bar 1s ease-in-out infinite;
}

.visualizer-bar:nth-child(odd) {
    animation-delay: 0.1s;
    height: 120px;
}

.visualizer-bar:nth-child(even) {
    animation-delay: 0.2s;
    height: 80px;
}

.visualizer-bar:nth-child(3n) {
    animation-delay: 0.3s;
    height: 140px;
    background: linear-gradient(180deg, var(--neon-yellow), var(--neon-green));
}

@keyframes pulse-bar {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scaleY(1);
        opacity: 0.8;
    }
}

/* Music Player */
.music-player {
    background: rgba(0, 0, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Language Tabs */
.language-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.lang-tab {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lang-tab.active {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Now Playing Display */
.now-playing {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.track-info {
    flex: 1;
}

.track-name {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.track-artist {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.album-art {
    width: 80px;
    height: 80px;
    position: relative;
}

.album-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    animation: rotate-album 20s linear infinite;
}

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

.album-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    opacity: 0.5;
    filter: blur(15px);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.time-current, .time-total {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: left 0.1s linear;
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    border: none;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 50%;
    cursor: pointer;
}

/* Track List */
.track-list-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.track-list-container::-webkit-scrollbar {
    width: 8px;
}

.track-list-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.track-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 4px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.track-item.active {
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border-left: 3px solid var(--neon-cyan);
}

.track-number {
    width: 30px;
    color: var(--neon-pink);
    font-weight: bold;
}

.track-title {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.track-duration {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating Music Notes */
.music-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: var(--neon-pink);
    opacity: 0.3;
    animation: float-note 10s ease-in-out infinite;
}

.note:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    color: var(--neon-cyan);
}

.note:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    color: var(--neon-yellow);
}

.note:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    color: var(--neon-green);
}

.note:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    color: var(--neon-pink);
}

.note:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    color: var(--neon-orange);
}

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

/* Community */
.community {
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 255, 0.1), transparent);
}

.community-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.community-buttons {
    margin-bottom: 60px;
}

.btn-large {
    padding: 25px 50px;
    font-size: 1.5rem;
}

.community-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tech-list {
    display: flex;
    gap: 15px;
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 960px) {
    .art-carousel {
        width: 100%;
        padding: 10px;
    }
    
    .art-slides-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-image-container {
        width: 300px;
        height: 300px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        padding: 0 10px;
    }
    
    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        margin: 0 10px;
        max-width: 100%;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-node {
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .story-content {
        padding: 0 10px;
    }
    
    .story-chapter {
        margin-bottom: 30px;
    }
    
    .story-language-tabs {
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .story-lang-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ===== $DIABLO STORY SECTION ===== */
.diablo-story {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 0, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(0, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at center, rgba(255, 255, 0, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, rgba(15, 0, 30, 0.95) 0%, rgba(0, 10, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.story-title {
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

.story-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-language-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.story-lang-tab {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.story-lang-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.story-lang-tab.active {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: scale(1.1);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-text {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.story-text.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.story-chapter {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.story-chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow), var(--neon-green));
    background-size: 300% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

.chapter-title {
    font-size: 1.8rem;
    font-weight: black;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.story-chapter p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.story-chapter p:last-child {
    margin-bottom: 0;
}

/* Animation for gradient flow */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== ROADMAP PHASE DETAILS ===== */
.phase-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 10px;
    border-left: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.detail-item:hover {
    color: rgba(0, 255, 255, 1);
    border-left-color: rgba(0, 255, 255, 0.8);
    padding-left: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Active timeline card enhancements */
.timeline-card.active-card .detail-item {
    border-left-color: rgba(255, 0, 255, 0.5);
}

.timeline-card.active-card .detail-item:hover {
    color: rgba(255, 0, 255, 1);
    border-left-color: rgba(255, 0, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Responsive adjustments for phase details */
@media (max-width: 768px) {
    .phase-details {
        gap: 6px;
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding-left: 8px;
    }
    
    .detail-item:hover {
        padding-left: 12px;
    }
}