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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(241, 147, 22, 0.4);
    animation: float 3s ease-in-out infinite;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link.game-link {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(241, 147, 22, 0.3);
}

.nav-link.game-link:hover {
    background: linear-gradient(45deg, #f97316, #f59e0b);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 147, 22, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #f59e0b;
    background: rgba(241, 147, 22, 0.1);
    border: 1px solid rgba(241, 147, 22, 0.3);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 5;
    padding-bottom: 0px;
    margin-bottom: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-coin {
    position: absolute;
    font-size: 30px;
    animation: floatRandom 6s ease-in-out infinite;
    opacity: 0.6;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.coin-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-image-container {
    position: relative;
    margin-bottom: 150px;
    max-width: 600px;
    margin: 0 auto 150px;
    overflow: visible;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
}

/* View Counter Display */
.view-counter-display {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(241, 147, 22, 0.2);
    z-index: 10;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.view-counter-display.show {
    opacity: 1;
    transform: translateY(0);
}

.counter-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    animation: blink 2s ease-in-out infinite;
}

.counter-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* Clickable cursor for main image */
#clickableWlfinu {
    cursor: pointer;
    transition: all 0.3s ease;
}

#clickableWlfinu:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Race Challenge Message */
.race-challenge-text {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(241, 147, 22, 0.4);
    border-radius: 20px;
    padding: 20px 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(241, 147, 22, 0.3);
    animation: raceTextFloat 3s ease-in-out infinite;
    max-width: 400px;
}

.race-message {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f59e0b, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(241, 147, 22, 0.3);
    line-height: 1.3;
}

.race-icons {
    font-size: 1.8rem;
    letter-spacing: 8px;
    animation: raceIconsBounce 2s ease-in-out infinite;
}

.race-challenge-text:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(241, 147, 22, 0.5);
    border-color: rgba(241, 147, 22, 0.6);
}

.race-challenge-text:hover .race-message {
    animation: textGlow 0.5s ease-in-out;
}

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

@keyframes raceIconsBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(241, 147, 22, 0.3);
    }
    50% {
        text-shadow: 0 4px 20px rgba(241, 147, 22, 0.8);
    }
}

/* Pulsing border effect */
.race-challenge-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #f97316, #eab308, #f59e0b);
    border-radius: 20px;
    z-index: -1;
    animation: borderPulse 3s linear infinite;
    opacity: 0.6;
}

@keyframes borderPulse {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Total Views Counter */
.hero-total-views {
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.hero-views-title {
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-views-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 2px solid rgba(241, 147, 22, 0.4);
    border-radius: 18px;
    padding: 25px 35px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(241, 147, 22, 0.25);
    min-width: 180px;
    transition: all 0.3s ease;
    animation: heroViewsFloat 4s ease-in-out infinite;
}

.hero-views-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(241, 147, 22, 0.4);
    border-color: rgba(241, 147, 22, 0.6);
}

.hero-views-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.hero-views-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 1px;
}

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

/* Hero Ranking Section */
.hero-ranking-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.hero-ranking-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cosmic-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    color: #f59e0b;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.star-2 {
    top: 15%;
    right: 10%;
    animation-delay: 0.5s;
}

.star-3 {
    top: 60%;
    left: 8%;
    animation-delay: 1s;
}

.star-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

.star-5 {
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
}

.star-6 {
    top: 40%;
    right: 3%;
    animation-delay: 2.5s;
}

.cosmic-wlfinu-img {
    width: 400px;
    height: 400px;
    max-width: 400px;
    position: relative;
    z-index: 3;
    border-radius: 50%;
    box-shadow: 0 25px 80px rgba(241, 147, 22, 0.4);
    animation: cosmicFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.cosmic-wlfinu-img:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 100px rgba(241, 147, 22, 0.6);
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ring {
    position: absolute;
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 50%;
    animation: expandRing 3s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-delay: 1s;
}

.ring-3 {
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

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

/* Falling Coins Animation */
.falling-coins {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 600px;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    font-size: 2rem;
    animation: coinFall 3s linear infinite;
    opacity: 0.8;
}

.coin-1 { left: 10%; animation-delay: 0s; }
.coin-2 { left: 25%; animation-delay: 0.5s; }
.coin-3 { left: 40%; animation-delay: 1s; }
.coin-4 { left: 60%; animation-delay: 1.5s; }
.coin-5 { left: 75%; animation-delay: 2s; }
.coin-6 { left: 90%; animation-delay: 2.5s; }

@keyframes coinFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(600px) rotate(360deg);
        opacity: 0;
    }
}

/* Rising Chart Animation */
.chart-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    z-index: 2;
}

.chart-line {
    position: absolute;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to top, #f59e0b, #f97316);
    border-radius: 2px;
    animation: chartRise 2s ease-out infinite;
    opacity: 0.7;
}

.line-1 {
    left: 20%;
    animation-delay: 0s;
}

.line-2 {
    left: 50%;
    animation-delay: 0.3s;
}

.line-3 {
    left: 80%;
    animation-delay: 0.6s;
}

.chart-arrow {
    position: absolute;
    bottom: 250px;
    right: 20%;
    font-size: 3rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #f59e0b);
}

@keyframes chartRise {
    0% {
        height: 20px;
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        height: 250px;
        opacity: 0.3;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
    }
}

/* Rocket Trail Effect */
.rocket-trail {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 200px;
    height: 400px;
    pointer-events: none;
    z-index: 4;
}

.rocket {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 3rem;
    animation: rocketLaunch 4s ease-out infinite;
    filter: drop-shadow(0 0 15px #f59e0b);
}

.trail {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 6px;
    height: 0;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(249, 115, 22, 0.8), 
        rgba(245, 158, 11, 0.6), 
        rgba(234, 179, 8, 0.4));
    border-radius: 3px;
    animation: trailGrow 4s ease-out infinite;
}

.explosion-particles {
    position: absolute;
    bottom: 0;
    right: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #f97316, #f59e0b);
    border-radius: 50%;
    animation: particleExplode 4s ease-out infinite;
}

.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 0.2s; }
.particle:nth-child(3) { animation-delay: 0.4s; }
.particle:nth-child(4) { animation-delay: 0.6s; }

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) rotate(45deg) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-400px) rotate(45deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes trailGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    30% {
        height: 100px;
        opacity: 0.8;
    }
    100% {
        height: 300px;
        opacity: 0;
    }
}

@keyframes particleExplode {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--random-x, -30px), var(--random-y, -50px)) scale(1.5);
        opacity: 0;
    }
}

/* Moon Text Animation */
.moon-text {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #f59e0b;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    animation: moonBounce 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes moonBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) scale(1.1);
    }
}



.hero-logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(241, 147, 22, 0.3);
    animation: pulse 2s ease-in-out infinite;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 50;
}

.rocket-emoji {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.title-text {
    background: linear-gradient(45deg, #f59e0b, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 15px rgba(241, 147, 22, 0.8)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 50;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(15, 15, 35, 0.8);
    padding: 25px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 20;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(241, 147, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 147, 22, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.btn-secondary:hover {
    background: #f59e0b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 147, 22, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 20;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 15;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 15;
}

.hero-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(241, 147, 22, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 20;
    box-shadow: 0 15px 40px rgba(241, 147, 22, 0.1);
}

.quote-main {
    font-size: 1.4rem;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.quote-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 12;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(241, 147, 22, 0.2);
    border-color: rgba(241, 147, 22, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    overflow: visible;
}

/* Soaring $WLFINU Rocket Animation */
.soar-icon {
    background: transparent;
    overflow: visible;
}

.rocket-wlfinu-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rocketSoar 3s ease-in-out infinite;
}

.soar-wlfinu-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(241, 147, 22, 0.4);
    position: relative;
    z-index: 3;
    animation: wlfinuSpin 2s linear infinite;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.rocket-flames {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: flamesFlicker 0.3s ease-in-out infinite alternate;
    z-index: 1;
}

.rocket-trail-mini {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, 
        rgba(249, 115, 22, 0.8), 
        rgba(245, 158, 11, 0.6), 
        rgba(234, 179, 8, 0.4),
        transparent);
    border-radius: 2px;
    animation: trailPulse 1s ease-in-out infinite;
    z-index: 2;
}

/* Enhanced hover effect for soar card */
.soar-card:hover .rocket-wlfinu-container {
    animation-duration: 1s;
    transform: scale(1.2) translateY(-20px);
}

.soar-card:hover .soar-wlfinu-img {
    box-shadow: 0 15px 50px rgba(241, 147, 22, 0.8);
    animation-duration: 0.5s;
}

.soar-card:hover .rocket-flames {
    font-size: 2rem;
    animation-duration: 0.1s;
}

@keyframes rocketSoar {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

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

@keyframes flamesFlicker {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes trailPulse {
    0%, 100% {
        opacity: 0.6;
        height: 40px;
    }
    50% {
        opacity: 0.9;
        height: 60px;
    }
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}



/* Epic Description Section */
.epic-description {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.epic-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(241, 147, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.epic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.epic-text-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(241, 147, 22, 0.2);
    animation: textBoxFloat 4s ease-in-out infinite;
}

.epic-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #f59e0b, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(241, 147, 22, 0.3);
}

.epic-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.epic-points {
    margin: 30px 0;
}

.epic-point {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.epic-point::before {
    content: '🚀';
    position: absolute;
    left: 0;
    animation: bounce 2s ease-in-out infinite;
}

.epic-finale {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.8;
    border-top: 2px solid rgba(241, 147, 22, 0.3);
    padding-top: 25px;
    margin-top: 30px;
}

.epic-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.zoom-background {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomPulse 3s ease-in-out infinite;
}

.epic-wlfinu-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    box-shadow: 0 30px 100px rgba(241, 147, 22, 0.6);
    animation: epicFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.epic-wlfinu-img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 40px 120px rgba(241, 147, 22, 0.8);
}

.explosion-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.explosion-ring {
    position: absolute;
    border: 3px solid rgba(241, 147, 22, 0.4);
    border-radius: 50%;
    animation: explosionExpand 2s linear infinite;
}

.ring-epic-1 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-delay: 0s;
}

.ring-epic-2 {
    width: 450px;
    height: 450px;
    margin: -225px 0 0 -225px;
    animation-delay: 0.7s;
}

.ring-epic-3 {
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
    animation-delay: 1.4s;
}

.lightning-bolts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.lightning {
    position: absolute;
    font-size: 3rem;
    color: #eab308;
    animation: lightningStrike 1.5s ease-in-out infinite;
    text-shadow: 0 0 20px #eab308;
}

.lightning-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.lightning-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.3s;
}

.lightning-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 0.6s;
}

.lightning-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 0.9s;
}

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

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes epicFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes explosionExpand {
    0% {
        transform: scale(0.8);
        opacity: 1;
        border-color: rgba(241, 147, 22, 0.8);
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
        border-color: rgba(241, 147, 22, 0.1);
    }
}

@keyframes lightningStrike {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    95% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Community Section */
.community {
    background: rgba(255, 255, 255, 0.02);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f59e0b;
}

.community-text p {
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
}

.community-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.community-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cbd5e1;
}

.community-benefits i {
    color: #f59e0b;
    width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link.telegram { border-color: rgba(34, 139, 230, 0.3); }
.social-link.twitter { border-color: rgba(29, 161, 242, 0.3); }
.social-link.opensea { border-color: rgba(32, 129, 226, 0.3); }

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 147, 22, 0.3);
}

.social-link i {
    font-size: 1.5rem;
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #f59e0b, #f97316);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 50px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border: 4px solid #0f0f23;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: #22c55e;
}

.timeline-item.active .timeline-marker {
    background: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(241, 147, 22, 0.2);
    border-color: rgba(241, 147, 22, 0.3);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f59e0b;
}

.timeline-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-date {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phase Features */
.phase-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.phase-features li {
    display: flex;
    align-items: center;
    margin: 8px 0;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.phase-features li i {
    margin-right: 10px;
    font-size: 0.8rem;
    width: 16px;
}

/* Timeline Item States */
.timeline-item.completed .timeline-marker {
    background: #22c55e;
    border-color: #0f0f23;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.timeline-item.upcoming .timeline-marker {
    background: #3b82f6;
    border-color: #0f0f23;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-item.future .timeline-marker {
    background: #6b7280;
    border-color: #0f0f23;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.timeline-item.completed .phase-features li i {
    color: #22c55e;
}

.timeline-item.upcoming .phase-features li i {
    color: #3b82f6;
}

.phase-features strong {
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-features li:contains("OPENSEA") {
    font-weight: 600;
}

.opensea-link {
    color: #2081e2;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.opensea-link:hover {
    color: #1868d3;
    border-bottom-color: #2081e2;
    text-shadow: 0 0 8px rgba(32, 129, 226, 0.4);
}

.timeline-item.future .phase-features li i {
    color: #6b7280;
}

.timeline-item.completed .timeline-content {
    border-color: rgba(34, 197, 94, 0.3);
}

.timeline-item.upcoming .timeline-content {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.timeline-item.future .timeline-content {
    border-color: rgba(107, 114, 128, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    clip-path: circle(50%);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #64748b;
}

.enhanced-disclaimer {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: left;
}

.enhanced-disclaimer h4 {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.enhanced-disclaimer p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.enhanced-disclaimer p:last-child {
    margin-bottom: 0;
}



.ranking-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f59e0b;
    text-align: center;
}

.ranking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.personal-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 147, 22, 0.5);
    box-shadow: 0 10px 25px rgba(241, 147, 22, 0.2);
}

.stat-box.my-clicks {
    border-color: rgba(34, 197, 94, 0.4);
}

.stat-box.my-rank {
    border-color: rgba(251, 191, 36, 0.4);
}

.stat-box.rank-title {
    border-color: rgba(168, 85, 247, 0.4);
    padding: 20px 15px;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}

.rank-badge {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: rankPulse 2s ease-in-out infinite;
}

.rank-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f59e0b;
}

.leaderboard {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(241, 147, 22, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.leaderboard-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 15px;
    text-align: center;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.leaderboard-item.current-user {
    background: rgba(241, 147, 22, 0.2);
    border: 2px solid rgba(241, 147, 22, 0.5);
    box-shadow: 0 5px 15px rgba(241, 147, 22, 0.3);
}

.leaderboard-item.current-user:hover {
    background: rgba(241, 147, 22, 0.3);
    border-color: rgba(241, 147, 22, 0.7);
}

.leaderboard-item.bot-user {
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(150, 150, 150, 0.3);
}

.leaderboard-item.bot-user .player-name {
    color: #94a3b8;
    font-style: italic;
}

.leaderboard-item.real-user {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.leaderboard-item.real-user:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.rank-position {
    font-weight: 700;
    color: #f59e0b;
    min-width: 25px;
}

.rank-position.gold { color: #fbbf24; }
.rank-position.silver { color: #e5e7eb; }
.rank-position.bronze { color: #f97316; }

.player-name {
    flex: 1;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.player-clicks {
    font-weight: 600;
    color: #f59e0b;
    font-size: 0.9rem;
}

.loading-text {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    padding: 20px;
}

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

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

@keyframes floatRandom {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(-5px, -20px) rotate(180deg); }
    75% { transform: translate(-15px, -5px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(241, 147, 22, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 25px 80px rgba(241, 147, 22, 0.5);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 35, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-image-container {
        max-width: 90%;
        margin-bottom: 30px;
        height: 350px;
    }
    
    .cosmic-wlfinu-img {
        width: 250px;
        height: 250px;
        max-width: 250px;
        border-radius: 50%;
        object-fit: cover;
        clip-path: circle(50%);
    }
    
    .star, .coin {
        font-size: 1.2rem;
    }
    
    .rocket {
        font-size: 2rem;
    }
    
    .chart-arrow {
        font-size: 2rem;
        bottom: 150px;
    }
    
    .moon-text {
        font-size: 1rem;
        top: -60px;
    }
    
    .chart-animation {
        height: 200px;
    }
    
    .rocket-trail {
        width: 150px;
        height: 300px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }
    
    .ring-3 {
        width: 360px;
        height: 360px;
        margin: -180px 0 0 -180px;
    }
    
    .soar-wlfinu-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        clip-path: circle(50%);
    }
    
    .rocket-flames {
        font-size: 1.2rem;
        bottom: -12px;
    }
    
    .rocket-trail-mini {
        height: 30px;
        bottom: -15px;
    }
    
    .epic-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .epic-text-box {
        padding: 30px 25px;
    }
    
    .epic-title {
        font-size: 2rem;
    }
    
    .epic-subtitle {
        font-size: 1.1rem;
    }
    
    .epic-point {
        font-size: 1.2rem;
    }
    
    .epic-finale {
        font-size: 1rem;
    }
    
    .epic-image-container {
        height: 350px;
    }
    
    .zoom-background {
        width: 300px;
        height: 300px;
    }
    
    .epic-wlfinu-img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        clip-path: circle(50%);
    }
    
    .lightning {
        font-size: 2rem;
    }
    
    .ring-epic-1 {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }
    
    .ring-epic-2 {
        width: 300px;
        height: 300px;
        margin: -150px 0 0 -150px;
    }
    
    .ring-epic-3 {
        width: 400px;
        height: 400px;
        margin: -200px 0 0 -200px;
    }

    .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .view-counter-display {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-icon {
        font-size: 1.3rem;
    }
    
    .ranking-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ranking-title {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .rank-badge {
        font-size: 2rem;
    }
    
    .rank-name {
        font-size: 1rem;
    }
    
    .race-challenge-text {
        bottom: -70px;
        padding: 15px 20px;
        max-width: 320px;
    }
    
    .race-message {
        font-size: 1.1rem;
    }
    
    .race-icons {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }
    
    .hero-image-container {
        height: 600px;
        margin-bottom: 60px;
    }
    
    .hero-total-views {
        bottom: -160px;
    }
    
    .hero-ranking-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .hero-views-title {
        font-size: 1rem;
    }
    
    .hero-views-box {
        padding: 20px 25px;
        min-width: 150px;
    }
    
    .hero-views-number {
        font-size: 1.8rem;
    }
    
    .hero-views-label {
        font-size: 0.9rem;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 30px 0 0 0;
        text-align: center;
        max-width: 100%;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}