/* ===== NEXIS Minimalist Design v4.1 - With Custom Game Icons ===== */

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

:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --bg: #050507;
    --bg-elevated: #0a0a0f;
    --bg-card: rgba(20, 20, 28, 0.4);
    --text: #ffffff;
    --text-secondary: #71717a;
    --text-muted: #52525b;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== Custom Cursor ===== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary-glow);
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
                width 0.3s ease, 
                height 0.3s ease,
                background 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    opacity: 1;
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline, .cursor-trail { display: none; }
}

a, button, .feature-card, .stat {
    cursor: none;
}

@media (max-width: 768px) {
    a, button, .feature-card, .stat { cursor: pointer; }
}

/* ===== Background ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg);
}

.bg-animation::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-slow 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    background: var(--primary);
}

.particle:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -10%;
    background: var(--secondary);
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 30%;
    background: var(--accent);
    animation-delay: 10s;
    opacity: 0.1;
}

.particle:nth-child(4),
.particle:nth-child(5) {
    display: none;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -30px); }
    66% { transform: translate(-30px, 50px); }
}

/* ===== Floating Game Tags ===== */
.floating-tag {
    position: absolute;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(99, 102, 241, 0.25);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    pointer-events: none;
    user-select: none;
    animation: floatTag 12s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.floating-tag::before {
    content: '<';
    color: rgba(139, 92, 246, 0.3);
    margin-right: 4px;
}

.floating-tag::after {
    content: '/>';
    color: rgba(139, 92, 246, 0.3);
    margin-left: 4px;
}

.floating-tag:nth-child(6) { animation-delay: 0s; animation-duration: 14s; }
.floating-tag:nth-child(7) { animation-delay: 1s; animation-duration: 16s; }
.floating-tag:nth-child(8) { animation-delay: 2s; animation-duration: 13s; }
.floating-tag:nth-child(9) { animation-delay: 3s; animation-duration: 15s; }
.floating-tag:nth-child(10) { animation-delay: 4s; animation-duration: 17s; }
.floating-tag:nth-child(11) { animation-delay: 5s; animation-duration: 12s; }
.floating-tag:nth-child(12) { animation-delay: 1.5s; animation-duration: 18s; }
.floating-tag:nth-child(13) { animation-delay: 2.5s; animation-duration: 14s; }
.floating-tag:nth-child(14) { animation-delay: 3.5s; animation-duration: 16s; }
.floating-tag:nth-child(15) { animation-delay: 4.5s; animation-duration: 13s; }

@keyframes floatTag {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    50% {
        transform: translate(20px, -30px);
    }
}

@media (max-width: 768px) {
    .floating-tag {
        font-size: 0.65rem;
    }
}

/* ===== Showcase Section ===== */
.showcase-section {
    padding: 100px 24px;
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.showcase-section .section-title {
    margin-bottom: 12px;
}

.showcase-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.showcase-large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: none;
    position: relative;
}

@media (max-width: 768px) {
    .showcase-card { cursor: pointer; }
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.showcase-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a24 0%, #0a0a0f 100%);
}

.showcase-large .showcase-preview {
    aspect-ratio: 16 / 11;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.05);
}

.showcase-bg[data-game="aimbot"] {
    background: 
        radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.2), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.3), transparent 60%),
        linear-gradient(135deg, #1a0a1f 0%, #0f0a1a 100%);
}

.showcase-bg[data-game="esp"] {
    background: 
        radial-gradient(circle at 60% 40%, rgba(16, 185, 129, 0.2), transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.25), transparent 60%),
        linear-gradient(135deg, #0a1f1a 0%, #0a0f1a 100%);
}

.showcase-bg[data-game="apex"] {
    background: 
        radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.25), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.25), transparent 60%),
        linear-gradient(135deg, #1f1a0a 0%, #1a0a0a 100%);
}

.showcase-bg[data-game="roblox"] {
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.3), transparent 60%),
        linear-gradient(135deg, #1a0a1f 0%, #0a0a1f 100%);
}

.showcase-bg[data-game="valorant"] {
    background: 
        radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.25), transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.25), transparent 60%),
        linear-gradient(135deg, #1f0a14 0%, #0a0a14 100%);
}

.showcase-preview-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.showcase-preview-video.loaded {
    opacity: 1;
}

.showcase-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hud-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
}

.hud-top-left {
    top: 12px;
    left: 12px;
}

.hud-top-right {
    top: 12px;
    right: 12px;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.hud-label {
    color: var(--text-muted);
    font-size: 0.6rem;
    text-transform: uppercase;
}

.hud-value {
    color: var(--primary);
    font-size: 0.8rem;
}

.hud-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 6px #ef4444;
    animation: liveBlink 1.5s ease-in-out infinite;
}

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

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.hud-crosshair::before,
.hud-crosshair::after {
    content: '';
    position: absolute;
    background: var(--primary);
    box-shadow: 0 0 4px var(--primary);
}

.hud-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.hud-crosshair::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .play-btn { cursor: pointer; }
}

.showcase-large .play-btn {
    width: 72px;
    height: 72px;
}

.showcase-card:hover .play-btn {
    transform: scale(1.1);
    background: var(--primary);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.showcase-info {
    padding: 16px 20px 20px;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.showcase-tag-pill {
    padding: 3px 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.showcase-tag-pill.green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.showcase-duration {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.showcase-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.showcase-large .showcase-info h3 {
    font-size: 1.25rem;
}

.showcase-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .showcase-section {
        padding: 80px 24px;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .showcase-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .showcase-large .showcase-preview {
        aspect-ratio: 16 / 9;
    }
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    cursor: none;
}

@media (max-width: 768px) {
    .video-modal-overlay { cursor: pointer; }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(99, 102, 241, 0.15);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    background: black;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.4rem;
    color: white;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
}

@media (max-width: 768px) {
    .video-modal-close { cursor: pointer; }
}

.video-modal-close:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: #ef4444;
    transform: rotate(90deg);
}

.video-coming-soon {
    padding: 60px 40px;
    text-align: center;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.coming-soon-content svg {
    color: var(--primary);
    opacity: 0.6;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.coming-soon-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0;
}

.coming-soon-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    max-width: 400px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    .video-coming-soon {
        padding: 40px 24px;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

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

/* ===== Hero ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg-images {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg-image.loaded {
    opacity: var(--hero-image-opacity, 0.25);
}

.hero-bg-image-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 480px;
    max-height: 800px;
    width: auto;
    height: auto;
    animation: heroImageFloat 8s ease-in-out infinite;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
}

.hero-bg-image-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 480px;
    max-height: 800px;
    width: auto;
    height: auto;
    animation: heroImageFloat 8s ease-in-out infinite;
    animation-delay: 3s;
    -webkit-mask-image: linear-gradient(to left, black 0%, black 70%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, black 70%, transparent 100%);
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-52%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 800px;
}

@media (max-width: 1100px) {
    .hero-bg-image-left,
    .hero-bg-image-right {
        max-width: 360px;
        max-height: 620px;
    }
    
    .hero-bg-image.loaded {
        opacity: calc(var(--hero-image-opacity, 0.25) * 0.7);
    }
}

@media (max-width: 768px) {
    .hero-bg-image-left,
    .hero-bg-image-right {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-avatar {
    margin: 0 auto 2rem;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    animation: avatarFloat 4s ease-in-out infinite;
}

.hero-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
    filter: blur(8px);
    opacity: 0.5;
}

.hero-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

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

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

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

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

/* ===== Buttons ===== */
.btn-download,
.btn-download-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn-download::before,
.btn-download-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-download:hover,
.btn-download-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-download:hover::before,
.btn-download-large:hover::before {
    opacity: 1;
}

.btn-download-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ===== Game Status Section ===== */
.status-section {
    padding: 60px 24px 100px;
    position: relative;
}

.status-header {
    text-align: center;
    margin-bottom: 48px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #10b981; }
    50% { opacity: 0.5; box-shadow: 0 0 16px #10b981; }
}

.status-section .section-title {
    margin-bottom: 12px;
}

.status-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.status-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.status-card:nth-child(1) { animation-delay: 0.05s; }
.status-card:nth-child(2) { animation-delay: 0.1s; }
.status-card:nth-child(3) { animation-delay: 0.15s; }
.status-card:nth-child(4) { animation-delay: 0.2s; }
.status-card:nth-child(5) { animation-delay: 0.25s; }
.status-card:nth-child(6) { animation-delay: 0.3s; }
.status-card:nth-child(7) { animation-delay: 0.35s; }
.status-card:nth-child(8) { animation-delay: 0.4s; }
.status-card:nth-child(9) { animation-delay: 0.45s; }
.status-card:nth-child(10) { animation-delay: 0.5s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(20, 20, 28, 0.6);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.status-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.status-card:hover .status-icon {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

/* Custom uploaded game icons */
.game-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 0.3s ease;
}

/* When custom icon present, adjust container */
.status-icon:has(.game-icon-img) {
    background: transparent;
    border-color: rgba(99, 102, 241, 0.15);
    padding: 0;
    overflow: hidden;
}

.status-card:hover .status-icon:has(.game-icon-img) {
    background: transparent;
    border-color: rgba(99, 102, 241, 0.3);
}

.status-card:hover .game-icon-img {
    transform: scale(1.05);
}

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.status-game {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-state {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-state.online {
    color: #10b981;
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.status-state.online .status-pulse {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.status-state.online .status-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid #10b981;
    animation: pulse-ring 2s ease-out infinite;
}

/* Status: Offline */
.status-state.offline {
    color: #ef4444;
}

.status-state.offline .status-pulse {
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
}

.status-state.offline .status-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid #ef4444;
    animation: pulse-ring 2s ease-out infinite;
}

/* Status: Maintenance */
.status-state.maintenance {
    color: #f59e0b;
}

.status-state.maintenance .status-pulse {
    background: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
}

.status-state.maintenance .status-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid #f59e0b;
    animation: pulse-ring 2s ease-out infinite;
}

/* Status: Updating */
.status-state.updating {
    color: #3b82f6;
}

.status-state.updating .status-pulse {
    background: #3b82f6;
    box-shadow: 0 0 6px #3b82f6;
}

.status-state.updating .status-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid #3b82f6;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.status-stats {
    display: flex;
    gap: 48px;
    padding: 20px 32px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.status-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.status-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

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

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    .status-stats {
        gap: 24px;
        padding: 16px 20px;
    }
}

/* ===== Cheat Features Showcase ===== */
.cheats-section {
    padding: 100px 24px;
    position: relative;
}

.cheats-header {
    text-align: center;
    margin-bottom: 48px;
}

.cheats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cheats-section .section-title {
    margin-bottom: 12px;
}

.cheats-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cheats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.cheat-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cheat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.3), 
        rgba(236, 72, 153, 0.3), 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cheat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cheat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(20, 20, 28, 0.6);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
}

.cheat-card:hover::before {
    opacity: 1;
}

.cheat-card:hover::after {
    opacity: 1;
}

.cheat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    margin-bottom: 18px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cheat-card:hover .cheat-icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.25);
}

.cheat-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.cheat-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cheat-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cheat-tag {
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.cheat-card:hover .cheat-tag {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}

@media (max-width: 768px) {
    .cheats-section {
        padding: 80px 24px;
    }
    .cheats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cheat-card {
        padding: 24px;
    }
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.reviews-section .section-title {
    margin-bottom: 12px;
}

.reviews-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.reviews-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 60s linear infinite;
    width: max-content;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 10px)); }
}

.review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(20, 20, 28, 0.7);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    color: var(--primary);
}

.review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .review-card {
        width: 280px;
        padding: 16px;
    }
    .reviews-track {
        gap: 14px;
        animation-duration: 40s;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 24px 120px;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.faq-section .section-title {
    margin-bottom: 12px;
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    background: rgba(20, 20, 28, 0.5);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(20, 20, 28, 0.6);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: none;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .faq-question { cursor: pointer; }
}

.faq-question:hover {
    color: var(--primary);
}

.faq-arrow {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-inner p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 24px 100px;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    .faq-answer-inner {
        padding: 0 20px 20px;
        padding-top: 16px;
        font-size: 0.88rem;
    }
}

/* ===== Sections ===== */
.features,
.about,
.download-section {
    padding: 120px 24px;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    background: rgba(20, 20, 28, 0.6);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== About ===== */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 28, 0.3) 50%, transparent 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.highlight {
    text-align: center;
    padding: 24px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-4px);
}

.highlight-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.highlight h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.highlight p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Download Section ===== */
.download-section {
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(99, 102, 241, 0.1);
}

@keyframes modalSlide {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

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

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-display {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.password-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.password-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.btn-confirm {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* ===== Selection ===== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-stats {
        gap: 32px;
    }
    .features,
    .about,
    .download-section {
        padding: 80px 24px;
    }
    .feature-card {
        padding: 24px;
    }
}