/* ===== CINEMATIC HERO ===== */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, #0d0d3e 0%, #0a0a0f 50%),
                radial-gradient(ellipse at 80% 20%, #0d1a2e 0%, transparent 50%);
    border-bottom: 1px solid #1a1a2e;
}

/* Particle canvas */
#heroCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Neon grid */
.neon-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating icons */
.floating-icons {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.12;
    animation: floatUpDown 6s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.22; }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 40px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

/* Animated badge */
.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: #00f5ff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px; height: 8px;
    background: #00f5ff;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #00f5ff;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 245, 255, 0); }
    50% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.15); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* Hero title */
.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: #ffffff;
    min-height: 96px;
}

.typing-text {
    background: linear-gradient(135deg, #00f5ff, #0080ff, #a020f0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

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

.typing-cursor {
    color: #00f5ff;
    animation: blink 1s step-end infinite;
    -webkit-text-fill-color: #00f5ff;
    margin-left: 4px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Glowing button */
.btn-glow {
    position: relative;
    overflow: hidden;
    animation: btnGlow 2s ease-in-out infinite;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6), 0 0 80px rgba(0, 128, 255, 0.2); }
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* Hero live dot */
.hero-live-dot {
    color: #ff3232 !important;
    font-size: 14px !important;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Launch card */
.launch-card {
    position: relative;
    background: rgba(13, 13, 26, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

.launch-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00f5ff, #0080ff, #a020f0);
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.launch-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 245, 255, 0.04) 0%, transparent 60%);
    animation: glowRotate 8s linear infinite;
    pointer-events: none;
}

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

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

.launch-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: #00f5ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
}

.launch-icon {
    font-size: 56px;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.launch-card h2 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.launch-card p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

.launch-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.launch-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaaaaa;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 8px 12px;
}

/* ===== GAMES ROW — infinite scroll ===== */
.games-row-wrapper {
    overflow: hidden;
    background: #0d0d1a;
    border-bottom: 1px solid #1a1a2e;
    padding: 16px 0;
}

.games-row {
    display: flex;
    gap: 12px;
    animation: scrollGames 30s linear infinite;
    width: max-content;
    padding: 0 20px;
}

.games-row:hover {
    animation-play-state: paused;
}

@keyframes scrollGames {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.game-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13px;
    color: #aaaaaa;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
    cursor: pointer;
}

.game-pill:hover {
    border-color: #00f5ff;
    color: #00f5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.15);
}

.game-active {
    border-color: #00f5ff;
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.05);
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 40px;
    background: #0a0a0f;
    border-bottom: 1px solid #1a1a2e;
}

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

.section-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: #00f5ff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-header h2 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-header p {
    font-size: 16px;
    color: #aaaaaa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 245, 255, 0.08);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

/* ===== CTA CINEMATIC ===== */
.cta-cinematic {
    position: relative;
    overflow: hidden;
}

.cta-glow-left {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 245, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-glow-right {
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(160, 32, 240, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOGO GLITCH ===== */
@keyframes glitchAnim {
    0% { clip-path: inset(0 0 90% 0); transform: translate(-2px, 0); }
    20% { clip-path: inset(30% 0 50% 0); transform: translate(2px, 0); }
    40% { clip-path: inset(60% 0 20% 0); transform: translate(-1px, 0); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(1px, 0); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 0); }
    100% { clip-path: inset(0); transform: translate(0); }
}

.logo.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #00f5ff;
    animation: glitchAnim 0.2s linear;
    opacity: 0.7;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 15px; }
    .float-icon { display: none; }
    .why-section { padding: 50px 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title { font-size: 60px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
