* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACOSURBVDhP7dIhDgIxFEXRkUgkS0AikUgkEolEsgR2hUSyBCSSJeDuJSVDMnmizChMj6nofy/NT7uuaT7UlbopZ95Nos6BiwPATV3m7CjAdVj2BdzVWc5XAessCrvMVAHHbAjnzFQB22wIh8xUlR0Bj2wpgJe6yMxPZY/AM8uAfc6O1n+dU9lZf05/WfNfb7VZ9eEjh4SxAAAAAElFTkSuQmCC") 10 10, default;
}

a, button, input, select, textarea, label, summary, [role="button"], .btn, .splash-btn, .discord-link, .nav-links a {
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACOSURBVDhP7dIhDgIxFEXRkUgkS0AikUgkEolEsgR2hUSyBCSSJeDuJSVDMnmizChMj6nofy/NT7uuaT7UlbopZ95Nos6BiwPATV3m7CjAdVj2BdzVWc5XAessCrvMVAHHbAjnzFQB22wIh8xUlR0Bj2wpgJe6yMxPZY/AM8uAfc6O1n+dU9lZf05/WfNfb7VZ9eEjh4SxAAAAAElFTkSuQmCC") 10 10, default;
}

:root {
    --bg: #000;
    --surface: #0a0a0f;
    --card: #0a0a0f;
    --surface-2: #0d0d14;
    --border: rgba(255,255,255,0.04);
    --border-hover: rgba(255,255,255,0.08);
    --text: #f0f0f0;
    --text-2: #aaa;
    --text-3: #555;
    --accent: #06b6d4;
    --accent-2: #0891b2;
    --accent-gradient: linear-gradient(135deg, #06b6d4, #6366f1);
    --radius: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(6,182,212,0.03), transparent),
        radial-gradient(ellipse 500px 600px at 80% 70%, rgba(99,102,241,0.02), transparent);
    pointer-events: none;
    z-index: 0;
}

main {
    flex: 1;
    position: relative;
    z-index: 1;
}

.navbar {
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.95);
    border-bottom-color: rgba(6,182,212,0.06);
}

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

.logo {
    font-size: 20px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2px;
}

.nav-links a {
    color: var(--text-3);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-2);
    background: rgba(255,255,255,0.02);
}

.nav-links a.active {
    color: var(--accent);
    background: rgba(6,182,212,0.06);
}

.discord-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px !important;
    color: var(--text-3) !important;
}

.discord-link:hover {
    color: #5865f2 !important;
    background: rgba(88,101,242,0.06) !important;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px !important;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 0 20px rgba(245,158,11,0.15);
}

.promo-link:hover {
    opacity: 1;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(245,158,11,0.25);
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px !important;
    color: var(--text-3) !important;
}

.youtube-link:hover {
    color: #ff0033 !important;
    background: rgba(255,0,51,0.06) !important;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 70px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.04), transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    background: rgba(6,182,212,0.06);
    border: 1px solid rgba(6,182,212,0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease-out;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    animation: fadeUp 0.6s ease-out;
}

.hero p {
    font-size: 17px;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.6s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeUp 0.6s ease-out 0.15s both;
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.5s ease-out both;
}

.stats-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

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

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.stat-card:hover {
    border-color: rgba(6,182,212,0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(6,182,212,0.05);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 26px;
    }
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 16px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-2);
}
.trust-item .icon { font-size: 18px; }
.trust-item .label { font-weight: 500; }

.safety-banner {
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(245,158,11,0.05));
    border: 1px solid rgba(251,191,36,0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.safety-banner .icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}
.safety-banner .text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.safety-banner .text strong { color: var(--text-1); }
.safety-banner .text a { color: var(--accent); text-decoration: none; }

.scripts-external-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    text-align: center;
}
.scripts-external-bar .bar-box {
    background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
}
.scripts-external-bar h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--text-1);
}
.scripts-external-bar p {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.scripts-external-bar .btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background: var(--accent);
    color: #fff;
}
.scripts-external-bar .btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.testimonials-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 40px;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-card p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 12px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.testimonial-author .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.testimonial-author .name { font-size: 12px; font-weight: 500; color: var(--text-1); }
.testimonial-author .role { font-size: 11px; color: var(--text-3); }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-bar { gap: 12px; }
    .trust-item { padding: 6px 12px; font-size: 12px; }
}

.stats-section {
        padding: 0 12px 40px;
    }
    .stats-grid {
        gap: 8px;
    }
    .stat-card {
        padding: 16px 12px;
    }
    .stat-number {
        font-size: 22px;
    }
    .stat-desc {
        font-size: 10px;
    }
}

.scale-in {
    animation: scaleIn 0.4s ease-out both;
}

.executor-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    position: relative;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 2px 16px rgba(6,182,212,0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6,182,212,0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-secondary:hover {
    border-color: rgba(6,182,212,0.15);
    color: var(--text);
    background: var(--surface-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    color: var(--text-3);
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(6,182,212,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(6,182,212,0.15);
    transform: translateY(-4px);
    background: var(--surface-2);
    box-shadow: 0 8px 40px rgba(6,182,212,0.06);
}

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

.feature-icon {
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(6,182,212,0.06);
    border: 1px solid rgba(6,182,212,0.08);
    border-radius: var(--radius);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.7;
}

.page-header {
    text-align: center;
    padding: 64px 24px 36px;
    position: relative;
}

.page-header .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.04), transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    position: relative;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 15px;
    color: var(--text-3);
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
}

.category-section {
    margin-bottom: 48px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.category-header h2 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header .line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.3), transparent);
    border-radius: 2px;
}

.category-icon {
    font-size: 20px;
    background: rgba(6,182,212,0.06);
    padding: 8px;
    border-radius: var(--radius);
    border: 1px solid rgba(6,182,212,0.08);
    line-height: 1;
}

.sub-category {
    margin-bottom: 32px;
}

.sub-category:last-child {
    margin-bottom: 0;
}

.sub-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.sub-category-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sub-category-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* Filter visibility */
.sub-category.hidden { display: none; }

.category-section.hidden { display: none; }

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
}
.no-results.visible { display: block; }

.executors-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.executor-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.35s ease;
    position: relative;
    border-left: 3px solid transparent;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.executor-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(6,182,212,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.executor-card:last-child {
    margin-bottom: 0;
}

.executor-card:hover {
    border-color: rgba(6,182,212,0.12);
    border-left-color: var(--accent);
    background: var(--surface-2);
    transform: translateX(4px);
    box-shadow: 0 4px 30px rgba(6,182,212,0.05);
}

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

.executor-logo {
    flex-shrink: 0;
}

.logo-placeholder svg {
    width: 72px;
    height: 72px;
}

.executor-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.executor-card:hover .executor-img {
    transform: scale(1.04);
}

.executor-info {
    flex: 1;
    min-width: 0;
}

.executor-info h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.executor-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 6px;
    background: rgba(34,197,94,0.08);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.12);
}

.update-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    line-height: 1.4;
}

.update-badge.updated {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.15);
}

.update-badge.stale {
    background: rgba(234,179,8,0.1);
    color: #eab308;
    border: 1px solid rgba(234,179,8,0.15);
}

.update-badge.outdated {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.15);
}

.executor-desc {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 14px;
}

.executor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 4px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 16px;
    position: relative;
    text-align: center;
    flex: 1;
}

.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border);
}

.stat-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-3);
    font-weight: 600;
}

.stat-value {
    font-size: 15px;
    font-weight: 800;
}

.stat-value.yes {
    color: #22c55e;
}

.stat-score {
    display: flex;
    align-items: center;
    gap: 6px;
}
.stat-score .bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    min-width: 44px;
}
.stat-score .bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
    background: linear-gradient(90deg, var(--accent), #6366f1);
}
.stat-score .bar-fill.high { background: linear-gradient(90deg, #22c55e, #16a34a); }
.stat-score .bar-fill.mid { background: linear-gradient(90deg, #eab308, #d97706); }
.stat-score .bar-fill.low { background: linear-gradient(90deg, #ef4444, #dc2626); }
.stat-score .label {
    font-weight: 800;
    font-size: 12px;
    min-width: 34px;
    text-align: right;
    flex-shrink: 0;
}

.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    pointer-events: none;
}
.toast {
    padding: 10px 24px;
    border-radius: 10px;
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    pointer-events: auto;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast.success { border-color: rgba(34,197,94,0.3); }
.toast.error { border-color: rgba(239,68,68,0.3); }

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-consent.show {
    transform: translateY(0);
}
.cookie-consent p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}
.cookie-consent a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-consent .btn {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.cookie-consent .btn:hover { opacity: 0.85; }

.under-development {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px 120px;
    text-align: center;
}

.dev-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    position: relative;
}

.dev-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3.5s ease-in-out infinite;
}

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

.dev-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-content p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 28px;
}

.dev-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    width: 220px;
    height: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-fill {
    height: 100%;
    width: 30%;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.dev-progress span {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    padding: 40px 24px 20px;
    background: linear-gradient(180deg, transparent, rgba(192,132,252,0.03));
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    text-align: left;
}
.footer-brand h3 {
    font-size: 18px;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: 12px;
    -webkit-text-fill-color: var(--text-3);
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: all 0.2s;
    font-size: 14px;
    text-decoration: none;
}
.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.footer h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 6px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--text-3);
    margin: 0;
}
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-3);
}
.footer-badge.verified { color: #10b981; border-color: rgba(16,185,129,0.2); }
.footer-badge.safe { color: #06b6d4; border-color: rgba(6,182,212,0.2); }
.footer-badge.secure { color: #a855f7; border-color: rgba(168,85,247,0.2); }

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer { padding: 32px 16px 16px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    cursor: pointer;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 30% 40%, rgba(6,182,212,0.06), transparent),
        radial-gradient(ellipse 400px 400px at 70% 60%, rgba(99,102,241,0.04), transparent);
    pointer-events: none;
}

.splash-content {
    position: relative;
    text-align: center;
    padding: 40px;
    animation: splashIn 0.8s ease-out;
}

@keyframes splashIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-gif {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    border-radius: var(--radius);
    image-rendering: auto;
}

.splash-logo {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #06b6d4, #6366f1, #06b6d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.1;
}

.splash-tagline {
    font-size: 15px;
    color: var(--text-3);
    margin-bottom: 32px;
}

.splash-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.splash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6,182,212,0.25);
}

.splash-btn:active {
    transform: translateY(0);
}

.splash-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #333;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.safety-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    line-height: 1.4;
}

.safety-badge.verified {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.15);
}

.safety-badge.trusted {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
    border: 1px solid rgba(6,182,212,0.15);
}

.filter-toolbar {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.filter-input {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-2);
    min-width: 160px;
    transition: all 0.25s ease;
    outline: none;
    flex: 1;
    max-width: 260px;
}

.filter-input:focus {
    border-color: rgba(6,182,212,0.3);
    box-shadow: 0 0 0 3px rgba(6,182,212,0.04);
}

.filter-trigger {
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-trigger:hover {
    border-color: rgba(6,182,212,0.25);
    color: var(--accent);
}

/* Filter Drawer */
.filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-drawer.is-open {
    visibility: visible;
    opacity: 1;
}

.filter-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    transition: background 0.3s ease;
}

.filter-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 340px;
    max-width: 100%;
    background: #0f1117;
    border-left: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.filter-drawer.is-open .filter-drawer-panel {
    transform: translateX(0);
}

.filter-drawer-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.filter-drawer-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.filter-drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.filter-drawer-close:hover {
    color: #fff;
    transform: scale(1.1);
}

.filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.filter-section + .filter-section {
    margin-top: 24px;
}

.filter-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin: 0 0 12px;
}

.filter-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-platform-option {
    position: relative;
}

.filter-platform-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-platform-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.filter-platform-option label:hover {
    border-color: rgba(6,182,212,0.2);
    background: rgba(6,182,212,0.04);
}

.filter-platform-option input:checked + label {
    background: rgba(6,182,212,0.08);
    border-color: rgba(6,182,212,0.3);
    color: var(--accent);
    transform: translateY(-1px);
}

.filter-segmented-control {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.filter-segment-btn {
    flex: 1;
    padding: 10px 8px;
    border: 0;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-segment-btn + .filter-segment-btn {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.filter-segment-btn:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
}

.filter-segment-btn.is-active {
    background: rgba(6,182,212,0.08);
    color: var(--accent);
}

.filter-sort-list {
    display: grid;
    gap: 10px;
}

.filter-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.filter-radio:hover {
    border-color: rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.filter-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-radio-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.filter-radio input:checked + .filter-radio-mark {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

.filter-radio span:last-child {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.filter-radio input:checked ~ span:last-child {
    color: #fff;
}

.filter-drawer-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.filter-reset-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-reset-btn:hover {
    border-color: rgba(239,68,68,0.3);
    color: #ef4444;
    background: rgba(239,68,68,0.04);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.faq-item:hover {
    border-color: rgba(6,182,212,0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    user-select: none;
    transition: color 0.2s ease;
}

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

.faq-arrow {
    font-size: 10px;
    color: var(--text-3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.8;
}

.changelog-list {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.changelog-list::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.cl-entry {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.cl-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    min-width: 52px;
    padding-top: 2px;
    text-align: right;
    flex-shrink: 0;
}

.cl-content {
    flex: 1;
    padding-left: 16px;
}

.cl-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cl-content p {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
}

.cl-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 1px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.cl-badge.new {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.15);
}

.cl-badge.improve {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
    border: 1px solid rgba(6,182,212,0.15);
}

.cl-badge.fix {
    background: rgba(234,179,8,0.1);
    color: #eab308;
    border: 1px solid rgba(234,179,8,0.15);
}

.scripts-list {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.script-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.script-card:hover {
    border-color: rgba(6,182,212,0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 10px;
}

.script-header h2 {
    font-size: 14px;
    font-weight: 700;
}

.script-game {
    font-size: 11px;
    color: var(--text-3);
}

.script-copy {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    padding: 5px 12px;
    border: 1px solid rgba(6,182,212,0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.script-copy:hover {
    background: rgba(6,182,212,0.06);
    border-color: rgba(6,182,212,0.3);
}

.script-copy.copied {
    color: #22c55e;
    border-color: rgba(34,197,94,0.3);
}

.script-code {
    padding: 0 18px 14px;
    margin: 0;
}

.script-code code {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-2);
    background: rgba(0,0,0,0.3);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.scripts-footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 60px;
    text-align: center;
}

.scripts-footer p {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    line-height: 1.4;
}

.status-badge.working {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.15);
}

.status-badge.unstable {
    background: rgba(234,179,8,0.1);
    color: #eab308;
    border: 1px solid rgba(234,179,8,0.15);
}

.status-badge.broken {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.15);
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(6,182,212,0.06);
    transform: translateY(-3px);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.guides-list {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.guide-card:hover {
    border-color: rgba(6,182,212,0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.guide-header {
    padding: 18px 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-header h2 {
    font-size: 16px;
    font-weight: 700;
    display: inline;
    margin-right: 10px;
}

.guide-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 4px;
}

.guide-tag.windows {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
    border: 1px solid rgba(6,182,212,0.15);
}

.guide-tag.android {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.15);
}

.guide-body {
    padding: 14px 22px 18px;
}

.guide-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
}

.guide-step strong {
    color: var(--text-2);
}

.guide-step a {
    color: var(--accent);
}

.guide-step code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
    background: rgba(0,0,0,0.3);
    padding: 1px 6px;
    border-radius: 4px;
    color: var(--accent);
}

.guide-step-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 6px;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.guide-tip {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(234,179,8,0.06);
    border: 1px solid rgba(234,179,8,0.1);
    border-radius: 8px;
    font-size: 12px;
    color: #eab308;
    line-height: 1.5;
}

.safety-card .guide-step-num {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.1);
    color: #ef4444;
    font-size: 13px;
}

.scripts-filter-bar {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 20px;
}

.scripts-filter-bar .filter-input {
    min-width: 220px;
    width: 100%;
}

.lua-keyword { color: var(--accent); }
.lua-string { color: #22c55e; }
.lua-comment { color: var(--text-3); font-style: italic; }
.lua-number { color: #60a5fa; }
.lua-builtin { color: #f472b6; }
.lua-constant { color: #eab308; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.show {
    display: block;
    opacity: 1;
}

.compare-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

.compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.compare-wrapper .compare-table {
    border: none;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    font-size: 13px;
}

.compare-table thead {
    background: rgba(6,182,212,0.04);
    position: sticky;
    top: 0;
    z-index: 2;
}

.compare-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.2), transparent);
}

.compare-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.compare-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
}

.compare-table tr:hover td {
    background: rgba(255,255,255,0.01);
}

.compare-table .status-yes { color: #22c55e; }
.compare-table .status-no { color: #ef4444; }
.compare-table .status-na { color: var(--text-3); }

.compare-table .cmp-name {
    color: var(--text);
    font-weight: 700;
}

.compare-table .cmp-link {
    color: var(--accent);
    text-decoration: none;
}

.compare-table .cmp-link:hover {
    text-decoration: underline;
}

.compare-table .cmp-platform {
    font-size: 11px;
}

.copy-btn {
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(6,182,212,0.12);
    border-color: rgba(6,182,212,0.2);
}

.copy-btn.copied {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.15);
    color: #22c55e;
}

/* AI Chatbot */
.chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(6,182,212,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(6,182,212,0.4);
}

.chat-toggle.close {
    background: var(--surface);
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
}

.chat-window {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 340px;
    max-height: 460px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: scaleIn 0.25s ease;
}

.chat-window.open {
    display: flex;
}

.chat-head {
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(6,182,212,0.08), transparent);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-head h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-head h3 span {
    font-size: 16px;
}

.chat-head-close {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.chat-head-close:hover {
    color: var(--text);
}

.chat-body {
    flex: 1;
    padding: 14px 16px;
    overflow-y: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    animation: fadeUp 0.3s ease both;
}

.chat-msg.bot {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-2);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.1);
    color: var(--text);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-foot {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-2);
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: rgba(6,182,212,0.3);
}

.chat-send {
    background: var(--accent-gradient);
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.chat-send:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.chat-qs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 16px 4px;
    border-top: 1px solid var(--border);
}

.chat-q {
    font-size: 10px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-3);
    cursor: pointer;
    transition: all 0.2s;
}

.chat-q:hover {
    border-color: rgba(6,182,212,0.2);
    color: var(--accent);
}

@media (max-width: 480px) {
    .chat-window {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 80px;
    }
    .chat-toggle {
        bottom: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* Quick Filters */
@media (max-width: 480px) {
    .filter-toolbar {
        padding: 0 16px 16px;
        flex-wrap: wrap;
    }
    .filter-toolbar-left {
        width: 100%;
    }
    .filter-input {
        min-width: 120px;
        max-width: none;
    }
    .filter-drawer-panel {
        width: 100%;
    }
}

/* Performance Benchmarks */
.benchmarks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.benchmarks-intro {
    margin-bottom: 32px;
}

.benchmark-note {
    background: rgba(6,182,212,0.04);
    border: 1px solid rgba(6,182,212,0.08);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
}

.benchmark-note strong {
    color: var(--accent);
}

.benchmark-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all 0.35s ease;
}

.benchmark-card:hover {
    border-color: rgba(6,182,212,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.benchmark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.benchmark-header h2 {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benchmark-unit {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-3);
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.benchmark-chart {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
}

.bar-label {
    width: 80px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #6366f1);
    border-radius: 8px;
    transition: width 1s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    right: 50%;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.bar-fill.bar-down {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.bar-fill.bar-fast {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.bar-fill.bar-mid {
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.bar-fill.bar-high {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.bar-fill.bar-low {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.bar-value {
    width: 40px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-2);
    text-align: left;
}

.benchmarks-note-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.benchmark-note-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.benchmark-note-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent);
}

.benchmark-note-card p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.7;
}

.benchmark-note-card p + p {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .benchmarks-section,
    .benchmarks-note-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .benchmark-card {
        padding: 18px;
    }

    .benchmark-header h2 {
        font-size: 16px;
    }

    .bar-label {
        width: 60px;
        font-size: 11px;
    }

    .bar-value {
        width: 32px;
        font-size: 11px;
    }

    .bar-track {
        height: 14px;
    }
}

@media (max-width: 480px) {
    .benchmarks-section,
    .benchmarks-note-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .benchmark-card {
        padding: 14px;
    }

    .benchmark-header h2 {
        font-size: 14px;
    }

    .bar-label {
        width: 48px;
        font-size: 10px;
    }

    .bar-value {
        width: 28px;
        font-size: 10px;
    }

    .bar-track {
        height: 12px;
    }

    .benchmark-note {
        font-size: 12px;
        padding: 12px 14px;
    }

    .benchmark-note-card {
        padding: 20px 16px;
    }

    .benchmark-note-card p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 14px;
    }

    .hero {
        padding: 70px 20px 50px;
    }

    .hero p {
        font-size: 14px;
    }

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

    .features {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .executor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        border-left: 3px solid transparent;
    }

    .executor-card:hover {
        transform: none;
        border-left-color: var(--accent);
    }

    .executor-stats {
        flex-direction: column;
        gap: 6px;
        padding: 10px;
    }

    .stat + .stat::before {
        display: none;
    }

    .stat {
        padding: 4px 8px;
    }

    .executor-info h2 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .nav-links a {
        padding: 6px 12px;
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header {
        padding: 50px 20px 28px;
    }

    .filter-toolbar {
        padding: 0 16px 20px;
    }

    .compare-table {
        min-width: 700px;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .compare-table .cmp-platform {
        font-size: 9px;
    }

    .splash-logo {
        font-size: 28px;
    }

    .splash-gif {
        max-width: 120px;
    }

    .splash-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .cl-date {
        display: none;
    }

    .changelog-list::before {
        display: none;
    }

    .cl-entry {
        padding: 12px 0;
    }

    .cl-content {
        padding-left: 0;
    }

    .script-code code {
        font-size: 11px;
        padding: 8px 10px;
    }

    .script-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .guide-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .scripts-filter-bar {
        padding: 0 16px 14px;
    }

    .scripts-filter-bar .filter-input {
        min-width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        padding: 72px 20px 24px;
        gap: 4px;
        transition: right 0.3s ease;
        z-index: 99;
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 15px;
        width: 100%;
        text-align: left;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links .discord-link,
    .nav-links .youtube-link,
    .nav-links .promo-link {
        padding: 14px 16px !important;
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
    }

    .nav-links a.active {
        background: rgba(6,182,212,0.08);
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .guide-step {
        font-size: 12px;
    }

    .guide-step code {
        font-size: 11px;
    }

    .guide-body {
        padding: 12px 16px 16px;
    }

    .guide-header {
        padding: 14px 16px 0;
    }

    .scripts-list,
    .executors-list,
    .faq-list,
    .changelog-list,
    .guides-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .compare-section {
        padding: 0 16px 24px;
    }

    .category-header h2 {
        font-size: 20px;
    }

    .sub-category-header h3 {
        font-size: 13px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .copy-btn, .script-copy {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        letter-spacing: -0.3px;
    }

    .hero {
        padding: 56px 16px 40px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 3px 12px;
    }

    .features {
        padding: 28px 16px;
    }

    .section-head h2 {
        font-size: 20px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .page-header p {
        font-size: 13px;
    }

    .page-header {
        padding: 44px 16px 24px;
    }

    .executor-card {
        padding: 16px;
        gap: 14px;
    }

    .executor-logo {
        flex-shrink: 0;
    }

    .executor-img {
        width: 60px;
        height: 60px;
    }

    .logo-placeholder svg {
        width: 60px;
        height: 60px;
    }

    .executor-info h2 {
        font-size: 17px;
    }

    .executor-desc {
        font-size: 12px;
    }

    .stat-value {
        font-size: 13px;
    }

    .stat-label {
        font-size: 8px;
    }

    .filter-toolbar {
        padding: 0 12px 16px;
        flex-wrap: wrap;
    }
    .filter-toolbar-left {
        width: 100%;
    }

    .category-header h2 {
        font-size: 18px;
    }

    .sub-category-header h3 {
        font-size: 12px;
    }

    .splash-logo {
        font-size: 22px;
    }

    .splash-gif {
        max-width: 100px;
    }

    .splash-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .splash-content {
        padding: 24px 16px;
    }

    .splash-tagline {
        font-size: 13px;
    }

    .cl-content h3 {
        font-size: 13px;
    }

    .cl-content p {
        font-size: 11px;
    }

    .script-code code {
        font-size: 10px;
        padding: 6px 8px;
        word-break: break-all;
    }

    .script-header h2 {
        font-size: 13px;
    }

    .scripts-footer p {
        font-size: 12px;
    }

    .nav-container {
        padding: 8px 12px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-img {
        width: 22px;
        height: 22px;
    }

    .nav-links {
        width: 220px;
        padding: 64px 16px 20px;
    }

    .compare-table {
        font-size: 9px;
        min-width: 600px;
    }

    .compare-table th,
    .compare-table td {
        padding: 5px 4px;
    }

    .compare-table .cmp-name {
        font-size: 10px;
    }

    .faq-question {
        padding: 12px 14px;
        font-size: 12px;
    }

    .faq-answer p {
        font-size: 11px;
    }

    .guide-header h2 {
        font-size: 14px;
    }

    .guide-step {
        font-size: 11px;
    }

    .guide-step strong {
        font-size: 11px;
    }

    .guide-step code {
        font-size: 10px;
    }

    .guide-tip {
        font-size: 11px;
        padding: 8px 12px;
    }

    .guide-header {
        padding: 12px 14px 0;
    }

    .guide-body {
        padding: 10px 14px 14px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 12px;
    }

    .copy-btn, .script-copy {
        padding: 5px 10px;
        font-size: 10px;
        min-height: 36px;
    }

    .back-to-top {
        bottom: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .footer {
        padding: 24px 12px 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-brand { grid-column: 1 / -1; }

    .promo-link {
        font-size: 12px !important;
        padding: 5px 12px !important;
    }

    .scripts-list,
    .executors-list,
    .faq-list,
    .changelog-list,
    .guides-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .compare-section {
        padding: 0 12px 20px;
    }
}
