*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #B7F34A;
    --secondary: #07111F;
    --accent: #38BDF8;
    --highlight: #F8FAFC;
    --bg: #050B14;
    --bg-light: #0A1628;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-active: rgba(183, 243, 74, 0.3);

    /* Text */
    --text-primary: #F8FAFC;
    --text-secondary: rgba(248, 250, 252, 0.7);
    --text-muted: rgba(248, 250, 252, 0.45);
    --text-dim: rgba(248, 250, 252, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #B7F34A 0%, #8CE034 100%);
    --gradient-bg: radial-gradient(ellipse at top, #07111F 0%, #050B14 50%, #02060C 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.8) 100%);
    --gradient-text: linear-gradient(135deg, #F8FAFC 0%, #B7F34A 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(183, 243, 74, 0.25);
    --shadow-glow-blue: 0 0 40px rgba(56, 189, 248, 0.2);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-float: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Layout */
    --container-max: 1400px;
    --container-padding: 60px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease-out);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--primary);
    position: relative;
}

.text-blue {
    color: var(--accent);
}

/* ===== UTILITY ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    position: relative;
    padding: 140px 0;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header-center .section-tag {
    padding-left: 32px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-title-left {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
}

.section-header-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: none;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background: #C5FF55;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-game,
.btn-event {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 14px 28px;
    font-size: 13px;
}

.btn-game:hover,
.btn-event:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: var(--bg);
    padding: 22px 48px;
    font-size: 16px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(183, 243, 74, 0.4);
}

.btn-arrow {
    display: inline-flex;
    transition: transform var(--transition);
}

.btn-cta:hover .btn-arrow {
    transform: translateX(6px);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
        border-color 0.3s, opacity 0.3s;
}

.cursor-dot.hover,
.cursor-ring.hover {
    width: 60px;
    height: 60px;
}

.cursor-dot.hover {
    background: var(--primary);
    opacity: 0.3;
}

.cursor-ring.hover {
    border-color: var(--primary);
    background: rgba(183, 243, 74, 0.1);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(183, 243, 74, 0.5);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 11, 20, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    z-index: 1002;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: transform var(--transition);
}

.nav-logo:hover .logo-mark {
    transform: rotate(-10deg) scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: none;
    transition: all var(--transition);
}

.nav-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(183, 243, 74, 0.05);
}

.nav-lang {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: none;
    transition: all var(--transition);
}

.nav-lang:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: none;
    padding: 0 12px;
    z-index: 1002;
}

.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

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

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 243, 74, 0.3), transparent);
    top: 10%;
    left: -5%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent);
    bottom: -10%;
    right: -5%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 243, 74, 0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 15s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 900px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(183, 243, 74, 0.08);
    border: 1px solid rgba(183, 243, 74, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(4rem, 16vw, 12rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--highlight) 0%, rgba(248, 250, 252, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(183, 243, 74, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary);
    opacity: 0.5;
    animation: bounceArrow 2s ease-in-out infinite;
}

.hero-side-text {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    z-index: 2;
    white-space: nowrap;
}

/* ===== SECTION 01 — INTRODUCTION ===== */
.intro-section {
    background: var(--bg);
    overflow: hidden;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 500px;
    line-height: 1.7;
}

.intro-numbers {
    display: flex;
    gap: 40px;
}

.intro-number {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.num-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
    transition: color var(--transition);
}

.intro-number:hover .num-big {
    color: var(--primary);
}

.num-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Intro Visual */
.intro-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    aspect-ratio: 1;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.visual-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(183, 243, 74, 0.1), transparent 70%);
    z-index: 1;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(183, 243, 74, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 243, 74, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.visual-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(183, 243, 74, 0.15);
    border-radius: 50%;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation: ringRotate 30s linear infinite reverse;
    border-color: rgba(56, 189, 248, 0.1);
}

.ring-3 {
    width: 320px;
    height: 320px;
    animation: ringRotate 40s linear infinite;
}

.ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.visual-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.center-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseExpand 3s ease-out infinite;
}

.center-text {
    position: relative;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg);
}

.visual-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: dotBlink 3s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 25%;
    right: 15%;
    animation-delay: 0.5s;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.dot-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.dot-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.dot-5 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.dot-6 {
    top: 60%;
    right: 8%;
    animation-delay: 2.5s;
}

.visual-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.info-item:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-live {
    color: var(--primary);
    position: relative;
    padding-left: 16px;
}

.status-live::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

/* ===== SECTION 02 — PLATFORM EXPERIENCE ===== */
.platform-section {
    background: var(--bg);
    position: relative;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    position: relative;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: none;
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-active);
    box-shadow: var(--shadow-card);
}

.card-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    z-index: 3;
}

.card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.cv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.platform-card:hover .cv-bg {
    transform: scale(1.1);
}

.card-visual-1 .cv-bg {
    background: linear-gradient(135deg, #0A1628, #1a2d4a, #0A1628);
}

.card-visual-2 .cv-bg {
    background: linear-gradient(135deg, #0A1628, #1a3a4a, #0A1628);
}

.card-visual-3 .cv-bg {
    background: linear-gradient(135deg, #0A1628, #2a1a3a, #0A1628);
}

.cv-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    z-index: 2;
    transition: all 0.5s var(--ease-out);
}

.platform-card:hover .cv-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--highlight);
}

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

.card-content {
    padding: 28px;
    position: relative;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--primary);
    transition: transform var(--transition);
}

.platform-card:hover .card-arrow {
    transform: translateX(8px);
}

/* ===== SECTION 03 — GAME WORLD ===== */
.games-section {
    background: var(--bg);
    overflow: hidden;
}

.games-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 var(--container-padding);
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.games-scroll::-webkit-scrollbar {
    display: none;
}

.games-scroll.dragging {
    cursor: grabbing;
}

.games-track {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    width: max-content;
}

.game-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-card);
}

.game-art {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.art-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: transform 0.6s var(--ease-out);
}

.game-card:hover .art-pattern {
    transform: scale(1.1);
}

.art-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 70%, rgba(183, 243, 74, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.game-card:hover .art-glow {
    opacity: 1;
}

.game-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-active);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

/* Game Art Backgrounds */
.game-art-1 {
    background: linear-gradient(135deg, #1a0a2e, #4a1a5a, #0a1628);
}

.game-art-1 .art-pattern {
    background-image: radial-gradient(circle at 30% 40%, rgba(183, 243, 74, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(56, 189, 248, 0.1) 0%, transparent 30%);
}

.game-art-2 {
    background: linear-gradient(135deg, #0a1a2e, #1a3a5a, #0a1628);
}

.game-art-2 .art-pattern {
    background-image: linear-gradient(45deg, rgba(183, 243, 74, 0.05) 25%, transparent 25%, transparent 50%, rgba(183, 243, 74, 0.05) 50%, rgba(183, 243, 74, 0.05) 75%, transparent 75%);
    background-size: 30px 30px;
}

.game-art-3 {
    background: linear-gradient(135deg, #2e1a0a, #5a3a1a, #0a1628);
}

.game-art-3 .art-pattern {
    background-image: linear-gradient(0deg, rgba(183, 243, 74, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 243, 74, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.game-art-4 {
    background: linear-gradient(135deg, #2e0a0a, #5a1a1a, #0a1628);
}

.game-art-4 .art-pattern {
    background-image: radial-gradient(circle, rgba(183, 243, 74, 0.08) 1px, transparent 1px);
    background-size: 25px 25px;
}

.game-art-5 {
    background: linear-gradient(135deg, #0a2e2e, #1a5a5a, #0a1628);
}

.game-art-5 .art-pattern {
    background-image: repeating-linear-gradient(45deg, rgba(183, 243, 74, 0.03) 0px, transparent 1px, transparent 10px, rgba(183, 243, 74, 0.03) 11px);
}

.game-info {
    padding: 24px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.game-name {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.game-genre {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== SECTION 04 — INTERACTIVE SHOWCASE ===== */
.showcase-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.showcase-visual {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-device {
    position: relative;
    width: 70%;
    aspect-ratio: 3 / 4;
    z-index: 2;
}

.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.screen-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(183, 243, 74, 0.1), transparent 70%);
    pointer-events: none;
}

.screen-icon {
    color: var(--primary);
    margin-bottom: 24px;
    transition: transform 0.5s var(--ease-out);
}

.screen-content.transitioning .screen-icon {
    transform: scale(0.8) rotate(10deg);
}

.screen-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.screen-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}

.screen-bars {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 200px;
}

.screen-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.screen-bar span {
    display: block;
    width: 75%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.8s var(--ease-out);
}

.screen-bar:nth-child(2) span {
    width: 90%;
}

.screen-bar:nth-child(3) span {
    width: 60%;
}

.screen-bar:nth-child(4) span {
    width: 85%;
}

.device-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: linear-gradient(180deg, var(--secondary), transparent);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    filter: blur(10px);
    opacity: 0.5;
}

/* Hotspots */
.hotspot-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotspot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hotspot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(183, 243, 74, 0.2);
    border-radius: 50%;
    animation: hotspotPulse 2s ease-out infinite;
    opacity: 0;
}

.hotspot.active .hotspot-pulse {
    opacity: 1;
}

.hotspot-dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 15px rgba(183, 243, 74, 0.5);
    transition: all var(--transition);
}

.hotspot:not(.active) .hotspot-dot {
    background: var(--text-muted);
    box-shadow: none;
}

.hotspot-label {
    position: absolute;
    top: -28px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity var(--transition);
}

.hotspot.active .hotspot-label,
.hotspot:hover .hotspot-label {
    opacity: 1;
}

.hotspot-1 {
    top: 15%;
    left: 10%;
}

.hotspot-2 {
    top: 15%;
    right: 10%;
}

.hotspot-3 {
    bottom: 15%;
    left: 10%;
}

.hotspot-4 {
    bottom: 15%;
    right: 10%;
}

.showcase-info {
    position: relative;
}

.showcase-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: none;
    transition: all var(--transition);
}

.showcase-tab:hover {
    border-color: var(--border-active);
    color: var(--text-primary);
}

.showcase-tab.active {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.showcase-detail {
    position: relative;
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: opacity 0.3s, transform 0.3s;
}

.detail-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    transition: opacity 0.3s, transform 0.3s;
}

.showcase-detail.transitioning .detail-title,
.showcase-detail.transitioning .detail-text {
    opacity: 0;
    transform: translateY(10px);
}

.detail-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    transition: opacity 0.3s, transform 0.3s;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SECTION 05 — COMMUNITY ===== */
.community-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.community-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    grid-template-areas:
        "item1 item2"
        "item3 item4";
}

.collage-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
}

.collage-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-card);
}

.collage-1 {
    grid-area: item1;
}

.collage-2 {
    grid-area: item2;
    margin-top: 40px;
}

.collage-3 {
    grid-area: item3;
    margin-top: -40px;
}

.collage-4 {
    grid-area: item4;
}

.collage-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collage-img-1 {
    background: linear-gradient(135deg, #1a2d4a, #0a1628);
}

.collage-img-2 {
    background: linear-gradient(135deg, #1a3a4a, #0a1628);
}

.collage-img-3 {
    background: linear-gradient(135deg, #2a1a3a, #0a1628);
}

.collage-img-4 {
    background: linear-gradient(135deg, #1a2d3a, #0a1628);
}

.ci-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.collage-img-1 .ci-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(183, 243, 74, 0.15), transparent 50%);
}

.collage-img-2 .ci-pattern {
    background: radial-gradient(circle at 70% 40%, rgba(56, 189, 248, 0.15), transparent 50%);
}

.collage-img-3 .ci-pattern {
    background: radial-gradient(circle at 50% 60%, rgba(183, 243, 74, 0.15), transparent 50%);
}

.collage-img-4 .ci-pattern {
    background: radial-gradient(circle at 40% 50%, rgba(56, 189, 248, 0.15), transparent 50%);
}

.ci-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 20, 0.8) 100%);
}

.collage-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 32px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-number-text {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== SECTION 06 — EVENTS ===== */
.events-section {
    background: var(--bg);
    overflow: hidden;
}

.events-nav {
    display: flex;
    gap: 12px;
}

.events-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: none;
    transition: all var(--transition);
}

.events-arrow:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.events-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 var(--container-padding);
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.events-scroll::-webkit-scrollbar {
    display: none;
}

.events-scroll.dragging {
    cursor: grabbing;
}

.events-track {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    width: max-content;
}

.event-card {
    width: 400px;
    flex-shrink: 0;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-card);
}

.event-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.poster-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.event-card:hover .poster-bg {
    transform: scale(1.1);
}

.event-poster-1 .poster-bg {
    background: linear-gradient(135deg, #0a1a2e, #1a3a5a, #0a1628);
}

.event-poster-2 .poster-bg {
    background: linear-gradient(135deg, #0a2e1a, #1a5a3a, #0a1628);
}

.event-poster-3 .poster-bg {
    background: linear-gradient(135deg, #2e0a1a, #5a1a3a, #0a1628);
}

.poster-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(183, 243, 74, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 243, 74, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.event-number {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.event-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.event-content {
    padding: 28px;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.event-location {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ===== SECTION 07 — TECHNOLOGY ===== */
.technology-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

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

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(183, 243, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 243, 74, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(183, 243, 74, 0.15), transparent);
}

.line-h {
    width: 100%;
    height: 1px;
    animation: lineScanH 8s linear infinite;
}

.line-v {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(183, 243, 74, 0.15), transparent);
    animation: lineScanV 8s linear infinite;
}

.tech-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.tech-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 243, 74, 0.2), transparent);
    top: 20%;
    left: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.tech-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent);
    bottom: 20%;
    right: 10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.tech-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.tech-card {
    padding: 32px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-active);
    background: var(--bg-light);
}

.tech-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 243, 74, 0.08);
    border: 1px solid rgba(183, 243, 74, 0.15);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.tech-card:hover .tech-icon {
    background: var(--primary);
    color: var(--bg);
    transform: scale(1.05);
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.tech-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.tech-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 1.2s var(--ease-out);
}

.tech-card.in-view .tech-bar span {
    width: 80%;
}

/* ===== SECTION 08 — USER EXPERIENCE ===== */
.ux-section {
    background: var(--bg);
    position: relative;
}

.ux-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mockup-desktop {
    width: 100%;
    max-width: 900px;
}

.mockup-frame {
    position: relative;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.bar-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.bar-dot.red {
    background: #ff5f57;
}

.bar-dot.yellow {
    background: #febc2e;
}

.bar-dot.green {
    background: #28c840;
}

.mockup-screen {
    position: relative;
    overflow: hidden;
}

.desktop-screen {
    aspect-ratio: 16 / 9;
}

.ux-interface {
    display: flex;
    width: 100%;
    height: 100%;
    background: var(--bg);
}

.ux-sidebar {
    width: 60px;
    background: var(--secondary);
    border-right: 1px solid var(--border);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ux-logo {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.ux-nav-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.ux-nav-item {
    width: 32px;
    height: 32px;
    background: var(--border);
    border-radius: 8px;
    transition: background 0.3s;
}

.ux-nav-item.active {
    background: var(--primary);
}

.ux-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ux-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.ux-search {
    flex: 1;
    height: 36px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 300px;
}

.ux-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
}

.ux-banner {
    position: relative;
    height: 180px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ux-banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(183, 243, 74, 0.2), transparent 50%);
}

.ux-banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ux-line {
    height: 12px;
    background: var(--border);
    border-radius: 4px;
}

.ux-line-big {
    width: 200px;
    height: 24px;
    background: var(--primary);
    opacity: 0.8;
}

.ux-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
}

.ux-card {
    position: relative;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    overflow: hidden;
}

.ux-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ux-card-1 .ux-card-glow {
    background: radial-gradient(circle at 50% 100%, rgba(183, 243, 74, 0.2), transparent 60%);
}

.ux-card-2 .ux-card-glow {
    background: radial-gradient(circle at 50% 100%, rgba(56, 189, 248, 0.2), transparent 60%);
}

.ux-card-3 .ux-card-glow {
    background: radial-gradient(circle at 50% 100%, rgba(183, 243, 74, 0.15), transparent 60%);
}

.ux-card-4 .ux-card-glow {
    background: radial-gradient(circle at 50% 100%, rgba(56, 189, 248, 0.15), transparent 60%);
}

.mockup-stand {
    width: 30%;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--secondary), transparent);
    filter: blur(10px);
    opacity: 0.5;
}

.mockup-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-end;
}

.mockup-tablet {
    width: 240px;
}

.tablet-frame {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    padding: 8px;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    background: var(--bg);
}

.ux-interface-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 16px;
    gap: 16px;
}

.uxm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uxm-logo {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.uxm-menu {
    width: 24px;
    height: 16px;
    background:
        linear-gradient(var(--text-secondary), var(--text-secondary)) 0 0 / 100% 2px no-repeat,
        linear-gradient(var(--text-secondary), var(--text-secondary)) 0 50% / 100% 2px no-repeat,
        linear-gradient(var(--text-secondary), var(--text-secondary)) 0 100% / 100% 2px no-repeat;
}

.uxm-banner {
    aspect-ratio: 16 / 9;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.uxm-banner-sm {
    aspect-ratio: 16 / 10;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.uxm-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(183, 243, 74, 0.2), transparent 60%);
}

.uxm-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.uxm-item {
    height: 40px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.uxm-item-sm {
    height: 32px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.uxm-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.uxm-tab {
    width: 24px;
    height: 24px;
    background: var(--border);
    border-radius: 6px;
}

.uxm-tab.active {
    background: var(--primary);
}

.mockup-mobile {
    width: 160px;
}

.mobile-frame {
    aspect-ratio: 9 / 19;
    border-radius: var(--radius-lg);
    padding: 8px;
    position: relative;
}

.mockup-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 16px;
    background: var(--bg);
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    background: var(--bg);
    overflow: hidden;
}

/* ===== SECTION 09 — TESTIMONIALS ===== */
.testimonials-section {
    background: var(--bg);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    padding: 48px;
    text-align: center;
}

.quote-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.testimonial-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    font-family: 'Space Grotesk', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg);
}

.avatar-1 {
    background: linear-gradient(135deg, var(--primary), #8CE034);
}

.avatar-2 {
    background: linear-gradient(135deg, var(--accent), #0EA5E9);
}

.avatar-3 {
    background: linear-gradient(135deg, var(--primary), #8CE034);
}

.avatar-4 {
    background: linear-gradient(135deg, var(--accent), #0EA5E9);
}

.avatar-5 {
    background: linear-gradient(135deg, var(--primary), #8CE034);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border: none;
    border-radius: 50%;
    cursor: none;
    transition: all var(--transition);
}

.testimonial-dot.active {
    width: 32px;
    background: var(--primary);
    border-radius: 5px;
}

/* ===== SECTION 10 — FINAL CTA ===== */
.final-cta-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

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

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 243, 74, 0.25), transparent);
    top: 10%;
    left: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent);
    bottom: 10%;
    right: 10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.cta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.cta-tag {
    margin-bottom: 32px;
}

.cta-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-arrow-anim {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    opacity: 0.6;
}

.arrow-path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: arrowDraw 2s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 250px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-big-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 700;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    white-space: nowrap;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: var(--bg);
}

/* ===== FOCUS ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}