* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    line-height: 1.6;
}

/* hero-roadmap Section */
.hero-roadmap {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-roadmap-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-roadmap-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #9333ea, #06b6d4, #9333ea);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-roadmap-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Roadmap Container */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 80px;
    position: relative;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #9333ea, #06b6d4, #9333ea);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.8), 0 0 30px rgba(6, 182, 212, 0.4);
    }
}

/* Roadmap Items */
.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.roadmap-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-right: 2rem;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: 2rem;
}

/* Timeline Dots */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #9333ea, #06b6d4);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.roadmap-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

/* Roadmap Content Cards */
.roadmap-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9333ea, #06b6d4, #9333ea);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.roadmap-item:hover .roadmap-content::before {
    opacity: 1;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-10px) scale(1.02);
    backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.quarter-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9333ea, #06b6d4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.quarter-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.roadmap-item:hover .quarter-badge::before {
    left: 100%;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.roadmap-features {
    list-style: none;
    padding: 0;
}

.roadmap-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.roadmap-features li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-features li {
    opacity: 1;
    transform: translateX(5px);
}

.roadmap-item:hover .roadmap-features li::before {
    transform: scale(1.2);
}

/* Status Indicators */
.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-progress {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-upcoming {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

/* Floating Gaming Symbols */
.floating-symbol {
    position: fixed;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.floating-symbol:nth-child(odd) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.floating-symbol:nth-child(even) {
    animation-delay: -4s;
    animation-duration: 7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-roadmap-title {
        font-size: 2.5rem;
    }

    .hero-roadmap-subtitle {
        font-size: 1.1rem;
    }

    .timeline-line {
        left: 2rem;
    }

    .roadmap-item {
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .roadmap-item .roadmap-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 2rem;
    }

    .roadmap-container {
        padding: 0 1rem 80px;
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #9333ea;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particle-float 3s ease-out forwards;
}

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}