/* HELLO GO OUT piggy uwu */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --neon-bright: #ffffff;
    --neon-soft: #e8e8e8;
    --neon-muted: rgba(255, 255, 255, 0.55);
    --neon-dim: rgba(255, 255, 255, 0.35);
    --neon-glow: rgba(255, 255, 255, 0.18);
    --neon-glow-strong: rgba(255, 255, 255, 0.35);
    --bg-deep: #000000;
    --bg-base: #050505;
    --bg-card: rgba(10, 10, 10, 0.96);
    --bg-elevated: rgba(16, 16, 16, 0.98);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-neon: rgba(255, 255, 255, 0.2);
    --border-neon-hover: rgba(255, 255, 255, 0.45);
    --shadow-neon: 0 0 24px rgba(255, 255, 255, 0.06);
    --shadow-neon-lg: 0 8px 40px rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 14px rgba(255, 255, 255, 0.45), 0 0 32px rgba(255, 255, 255, 0.12);
}

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

html {
    background: #000000;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.88);
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-color: #000000;
    background-image:
        radial-gradient(ellipse 28% 95% at -8% 50%, rgba(255, 255, 255, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 28% 95% at 108% 50%, rgba(255, 255, 255, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 70% 45% at 50% -15%, rgba(255, 255, 255, 0.1) 0%, transparent 62%),
        radial-gradient(ellipse 70% 45% at 50% 115%, rgba(255, 255, 255, 0.08) 0%, transparent 62%),
        radial-gradient(ellipse 55% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 72%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        56px 56px,
        56px 56px;
}

body::after {
    content: '';
    position: fixed;
    inset: -50% 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.015) 42%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.015) 58%,
        transparent 100%
    );
    animation: bgNeonScan 10s linear infinite;
    opacity: 0.85;
}

@keyframes bgNeonScan {
    0% { transform: translateY(-30%); }
    100% { transform: translateY(30%); }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.88) !important;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 30px;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 0 16px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

a.logo-link,
.logo-link {
    text-decoration: none !important;
    color: inherit;
}

.logo-link:hover,
.logo-link:focus,
.logo-link:visited {
    text-decoration: none !important;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 36px;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5px;
    width: 100%;
    height: 100%;
}

.logo-grid span {
    background: var(--neon-bright);
    border-radius: 1.5px;
    width: 100%;
    height: 100%;
}

.logo-mark {
    display: block;
    width: 32px;
    height: 36px;
    transform: rotate(-12deg);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.45));
}

.logo-text {
    font-size: 26px;
    font-weight: 600;
    color: var(--neon-bright);
    letter-spacing: 0.04em;
    text-shadow: var(--text-glow);
}

/* Navigation */
.nav {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--neon-dim);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--neon-soft);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-bright);
    font-weight: 600;
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

/* Home page */
.home-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    position: relative;
    z-index: 10;
    flex: 1;
}

.home-header { margin-bottom: 36px; }

.home-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--neon-bright);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-shadow: var(--text-glow);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.tool-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.tool-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}

.tool-card-soon { cursor: default; }

.tool-card-soon:hover {
    border-color: var(--border-subtle);
    box-shadow: none;
    transform: none;
}

.tool-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.tool-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
}

.tool-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 12px;
}

.tool-card-desc {
    color: var(--neon-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.tool-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.tool-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--neon-dim);
    font-size: 13px;
    line-height: 1.65;
}

.tool-card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-muted);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.tool-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--border-neon);
    border-radius: 8px;
    color: var(--neon-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-neon);
    transition: all 0.2s ease;
    width: fit-content;
    margin-top: auto;
}

.tool-card-btn:hover,
a.tool-card:hover .tool-card-btn {
    border-color: var(--border-neon-hover);
    background: rgba(255, 255, 255, 0.12);
    color: var(--neon-bright);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.tool-card-btn-soon {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

.tool-card-soon-minimal {
    align-items: center;
    justify-content: center;
}

.tool-card-soon-minimal .tool-card-title {
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
}

/* Home — jump to reviews */
.home-section-jump {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: -8px;
}

.home-reviews-jump {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
}

.home-reviews-jump::after {
    content: '↓';
    font-size: 14px;
    opacity: 0.75;
}

.home-reviews-jump:hover {
    color: var(--neon-bright);
    border-color: var(--border-neon-hover);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-1px);
}

.home-section-jump--to-tools {
    margin-top: 0;
    margin-bottom: 28px;
}

.home-tools-jump::after {
    content: '↑';
}

#tools {
    scroll-margin-top: 24px;
}

#reviews {
    scroll-margin-top: 24px;
}

/* Home — Why choose us */
.home-why {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--border-subtle);
}

.home-why-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.home-why-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-muted);
    margin-bottom: 14px;
}

.home-why-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-bright);
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: var(--text-glow);
}

.home-why-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--neon-dim);
}

.home-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.home-why-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.home-why-stat:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
}

.home-why-stat-num {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 6px;
    text-shadow: var(--text-glow);
}

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

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.home-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 26px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-why-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}

.home-why-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
    margin-bottom: 18px;
}

.home-why-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 10px;
    line-height: 1.35;
}

.home-why-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neon-dim);
    margin: 0;
}

.home-why-closing {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.75;
    color: var(--neon-muted);
    padding: 24px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

/* Home — Reviews (masonry, inspired by community sections) */
.home-reviews {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--border-subtle);
}

.home-reviews-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.home-reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 12px;
    text-shadow: var(--text-glow);
}

.home-reviews-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neon-dim);
    margin-bottom: 0;
}

.home-reviews-masonry {
    column-count: 4;
    column-gap: 16px;
}

.home-review-card {
    break-inside: avoid;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 18px 18px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.home-review-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
}

.home-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.home-review-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--neon-bright);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
}

.home-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-soft);
    line-height: 1.3;
}

.home-review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--neon-muted);
    margin: 0;
}

/* Features — Engine Room */
.feats-panel { max-width: 820px; }
.feats-panel .info-modal-title { font-size: 28px; margin-bottom: 4px; }
.feats-panel .info-modal-subtitle { margin-bottom: 28px; font-size: 14px; color: var(--neon-dim); }

.feats-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.feats-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 8, 8, 0.9) 100%);
    border: 1px solid var(--border-neon);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feats-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.feats-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--neon-bright);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: var(--text-glow);
}

.feats-stat-label {
    display: block;
    font-size: 11px;
    color: var(--neon-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.feats-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.feat-module {
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 18px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-module:hover {
    border-color: var(--border-neon-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-lg);
}

.feat-module--hero {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(8, 8, 8, 0.95) 55%);
    border-color: var(--border-neon);
    overflow: hidden;
}

.feat-module--hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -40%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.feat-module-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
}

.feat-module--hero .feat-module-icon { width: 56px; height: 56px; }
.feat-module-icon svg { width: 22px; height: 22px; }
.feat-module--hero .feat-module-icon svg { width: 28px; height: 28px; }

.feat-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.feat-module-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--neon-dim);
    text-transform: uppercase;
}

.feat-status {
    font-size: 10px;
    font-weight: 600;
    color: var(--neon-soft);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.feat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-bright);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: featPulse 2s ease infinite;
}

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

.feat-module h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.feat-module--hero h3 { font-size: 18px; }
.feat-module p { font-size: 13px; color: var(--neon-muted); line-height: 1.55; margin: 0; }
.feat-module-body { flex: 1; min-width: 0; }

.feats-pipeline {
    background: rgba(6, 6, 6, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 16px 16px;
}

.feats-pipeline-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--neon-dim);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.feats-pipe-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 8px;
}

.feats-pipe-track::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.feats-pipe-track::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, #cccccc, transparent);
    background-size: 200% 100%;
    animation: pipeShimmer 2.8s linear infinite;
    z-index: 1;
}

@keyframes pipeShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.feats-pipe-step { flex: 1; text-align: center; position: relative; z-index: 2; }

.feats-pipe-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--border-neon);
    font-size: 12px;
    font-weight: 800;
    color: var(--neon-bright);
    box-shadow: var(--shadow-neon);
}

.feats-pipe-name { font-size: 12px; font-weight: 600; color: var(--neon-soft); }

@media (max-width: 640px) {
    .feats-stats { grid-template-columns: 1fr; }
    .feats-bento { grid-template-columns: 1fr; }
    .feat-module--hero { grid-column: span 1; flex-direction: column; align-items: flex-start; }
}

.container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.card {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid var(--border-neon);
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--neon-bright);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: var(--text-glow);
}

.description {
    text-align: center;
    color: var(--neon-muted);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

.form-group { margin-bottom: 25px; }

input[type="password"] {
    width: 100%;
    padding: 18px 20px;
    background: rgba(8, 8, 8, 0.9);
    border: 2px solid var(--border-neon);
    border-radius: 12px;
    font-size: 15px;
    color: var(--neon-bright);
    transition: all 0.3s;
}

input[type="password"]::placeholder { color: var(--neon-dim); }

input[type="password"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06), 0 0 24px rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 12, 0.95);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
}

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

.btn-submit.is-loading,
.btn-submit:disabled {
    cursor: wait;
    pointer-events: none;
    opacity: 0.88;
    transform: none;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

.btn-submit.is-loading:hover,
.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    vertical-align: -3px;
}

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

.message {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
    font-size: 15px;
}

.message.success {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-soft);
    border: 1px solid var(--border-neon);
    display: block;
}

.message.error {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
}

/* Processing overlay */
.proc-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.proc-overlay.active {
    display: flex;
    animation: procFadeIn 0.35s ease;
}

.proc-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
}

.proc-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

.proc-panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 40px 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 0 0 80px rgba(255, 255, 255, 0.04);
    text-align: center;
    overflow: hidden;
}

.proc-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.proc-visual {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.proc-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.proc-ring--outer {
    animation: procSpin 8s linear infinite;
    border-top-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.proc-ring--inner {
    inset: 14px;
    animation: procSpin 4s linear infinite reverse;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.proc-icon {
    position: absolute;
    inset: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-bright);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.proc-visual--shaders .proc-icon svg {
    fill: #ffffff;
    animation: procBoltPulse 1.8s ease-in-out infinite;
}

.proc-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    animation: procSpark 2s ease-in-out infinite;
}

.proc-spark--1 { top: 8px; right: 20px; animation-delay: 0s; }
.proc-spark--2 { bottom: 16px; left: 12px; animation-delay: 0.6s; }
.proc-spark--3 { top: 40px; left: 4px; animation-delay: 1.2s; }

.proc-grid-scan {
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    background: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 8px 8px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    animation: procGridPulse 2.5s ease-in-out infinite;
}

.proc-cube {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: procCubeFloat 3s ease-in-out infinite;
}

.proc-cube--1 { top: 6px; right: 8px; animation-delay: 0s; }
.proc-cube--2 { bottom: 10px; left: 6px; animation-delay: 1s; }

.proc-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-dim);
    margin-bottom: 8px;
}

.proc-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--neon-bright);
    text-shadow: var(--text-glow);
    margin-bottom: 12px;
}

.proc-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--neon-soft);
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    word-break: break-word;
}

.proc-item-name:empty { display: none; }

.proc-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.proc-stage {
    padding: 8px 4px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
    font-size: 10px;
    font-weight: 600;
    color: var(--neon-dim);
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.proc-stage span {
    display: block;
    font-size: 9px;
    opacity: 0.5;
    margin-bottom: 2px;
}

.proc-stage.active {
    border-color: var(--border-neon);
    color: var(--neon-muted);
    background: rgba(255, 255, 255, 0.04);
}

.proc-stage.current {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--neon-bright);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}

.proc-progress { margin-bottom: 16px; }

.proc-progress-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.proc-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), #ffffff, rgba(255,255,255,0.3));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.proc-overlay--shaders .proc-progress-fill {
    background: linear-gradient(90deg, rgba(255,255,255,0.2), #ffffff, rgba(200,200,255,0.8));
}

.proc-status {
    font-size: 14px;
    color: var(--neon-soft);
    margin-bottom: 8px;
    min-height: 1.4em;
    transition: opacity 0.25s ease;
}

.proc-status.proc-status--tick {
    animation: procStatusTick 0.45s ease;
}

.proc-timer {
    font-size: 13px;
    color: var(--neon-dim);
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

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

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

@keyframes procBoltPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(255,255,255,0.9)); }
}

@keyframes procSpark {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes procGridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

@keyframes procCubeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-6px) rotate(45deg); opacity: 1; }
}

@keyframes procStatusTick {
    0% { opacity: 0.3; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Legacy loading (fallback) */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(20px);
}

.loading-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.loading-content {
    text-align: center;
    color: white;
    padding: 60px 50px;
    background: var(--bg-elevated);
    border-radius: 24px;
    border: 1px solid var(--border-neon);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 255, 255, 0.06);
    max-width: 500px;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--neon-bright);
    border-right-color: var(--neon-soft);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.spinner::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 4px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: spin 0.7s linear infinite reverse;
}

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

.loading-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clothing-name,
.processing-status {
    font-size: 16px;
    margin: 15px 0;
    color: var(--neon-soft);
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-neon);
}

.clothing-name { font-size: 20px; font-weight: 600; padding: 12px 20px; border-radius: 12px; }

.processing-status { animation: pulse 2s ease-in-out infinite; }

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

.timer {
    font-size: 16px;
    opacity: 0.45;
    font-weight: 500;
    letter-spacing: 1px;
}

.success-banner {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.success-banner.active {
    display: flex;
    animation: procFadeIn 0.35s ease;
}

.success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
}

.success-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

.success-content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 640px;
    min-height: 168px;
    color: white;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    clip-path: polygon(
        18px 0, calc(100% - 18px) 0,
        100% 18px, 100% calc(100% - 18px),
        calc(100% - 18px) 100%, 18px 100%,
        0 calc(100% - 18px), 0 18px
    );
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.85),
        0 0 80px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: successSlideIn 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

@keyframes successSlideIn {
    from { transform: translateX(40px) scale(0.96); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

.success-side {
    flex: 0 0 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.025);
    border-right: 1px solid var(--border-neon);
    position: relative;
}

.success-side::after {
    content: '';
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.success-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 28px 20px 24px;
    min-width: 0;
}

.success-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 6px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-neon-hover);
    border-radius: 0;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.12);
    animation: successDiamondIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
    position: relative;
    color: var(--neon-bright);
}

.success-icon svg {
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
}

.success-icon--shaders svg {
    fill: #ffffff;
}

.success-icon--game svg {
    stroke: #ffffff;
}

.success-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: rotate(0deg);
    animation: pulse 2.4s ease infinite;
}

@keyframes successDiamondIn {
    from { transform: rotate(45deg) scale(0); opacity: 0; }
    to { transform: rotate(45deg) scale(1); opacity: 1; }
}

.success-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.success-clothing-name {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--neon-soft);
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    border: 1px solid var(--border-neon);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.success-clothing-name:empty,
.success-clothing-name[hidden] {
    display: none;
}

.success-message {
    font-size: 13px;
    margin-bottom: 14px;
    opacity: 0.55;
    line-height: 1.5;
}

.success-close {
    width: auto;
    min-width: 108px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.4px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.success-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
}

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

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

@keyframes scaleIn {
    from { transform: scale(0) rotate(-180deg); }
    to { transform: scale(1) rotate(0deg); }
}

@media (max-width: 560px) {
    .success-content {
        flex-direction: column;
        max-width: 360px;
        min-height: 0;
        clip-path: polygon(
            14px 0, calc(100% - 14px) 0,
            100% 14px, 100% calc(100% - 14px),
            calc(100% - 14px) 100%, 14px 100%,
            0 calc(100% - 14px), 0 14px
        );
    }

    .success-side {
        flex: none;
        padding: 20px 0 12px;
        border-right: none;
        border-bottom: 1px solid var(--border-neon);
    }

    .success-side::after {
        display: none;
    }

    .success-main {
        padding: 18px 20px 20px;
        align-items: center;
        text-align: center;
    }

    .success-title {
        font-size: 20px;
    }
}

.error-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.error-banner.active { display: flex; }

.error-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 40px;
    background: var(--bg-elevated);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    animation: slideUp 0.4s ease;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #666666 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.5s ease 0.2s backwards;
}

.error-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--neon-soft);
}

.error-message {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.75;
    line-height: 1.6;
}

.error-close {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #444444 0%, #222222 100%);
    color: white;
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.error-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    border-color: var(--border-neon-hover);
}

.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99998;
    backdrop-filter: blur(25px);
    animation: fadeIn 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.info-modal.active { display: flex; }

.info-modal-content {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 45px 40px;
    max-width: 900px;
    width: 100%;
    border: 1px solid var(--border-neon);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 255, 255, 0.05);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    color: var(--neon-bright);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);
    box-shadow: var(--shadow-neon);
}

.info-modal-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--neon-bright);
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: var(--text-glow);
}

.info-modal-subtitle {
    font-size: 16px;
    color: var(--neon-muted);
    text-align: center;
    margin-bottom: 40px;
}

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

.feature-card {
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
    background: rgba(12, 12, 12, 0.8);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--neon-muted);
    line-height: 1.6;
}

.info-content { display: flex; flex-direction: column; gap: 30px; }

.info-section {
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 25px;
}

.info-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-soft);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-section p {
    font-size: 15px;
    color: var(--neon-muted);
    line-height: 1.7;
}

.info-list { list-style: none; padding: 0; margin: 0; }

.info-list li {
    font-size: 15px;
    color: var(--neon-muted);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list li:last-child { border-bottom: none; }

.info-list strong {
    color: var(--neon-bright);
    font-weight: 700;
}

.tools-list { display: flex; flex-direction: column; gap: 15px; }

.tool-item {
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.tool-item:not(.disabled):hover {
    transform: translateX(5px);
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
}

.tool-item.disabled { opacity: 0.5; cursor: not-allowed; }

.tool-info { flex: 1; width: 100%; }

.tool-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-info p {
    font-size: 14px;
    color: var(--neon-muted);
    line-height: 1.5;
}

.tool-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-neon);
    color: var(--neon-soft);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-badge.coming-soon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--neon-dim);
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    margin-top: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-neon);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
    border-color: var(--border-neon-hover);
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
}

.tool-link:hover::before { left: 100%; }

.tool-link:active {
    transform: translateY(0);
    box-shadow: var(--shadow-neon);
}

@media (min-width: 769px) and (max-width: 1100px) {
    .home-reviews-masonry { column-count: 3; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .home-why-grid { grid-template-columns: repeat(2, 1fr); }
    .home-why-stats { grid-template-columns: repeat(2, 1fr); }
    .home-reviews-masonry { column-count: 2; }
}

@media (max-width: 768px) {
    .header { padding: 0 20px; }
    .header-content { padding: 18px 0 12px; gap: 10px; }
    .logo-text { font-size: 20px; }
    .nav { gap: 4px; }
    .nav-link { padding: 8px 12px; font-size: 14px; }
    .nav-link span { display: none; }
    .card { padding: 40px 30px; }
    h1 { font-size: 32px; }
    .description { font-size: 14px; }
    .container { padding: 20px; }
    .info-modal-content { padding: 35px 25px; max-height: 85vh; }
    .info-modal-title { font-size: 28px; }
    .info-modal-subtitle { font-size: 14px; margin-bottom: 30px; }
    .features-grid { grid-template-columns: 1fr; gap: 15px; }
    .feature-card { padding: 20px 15px; }
    .info-section { padding: 20px; }
    .tool-item { padding: 20px; }
    .tools-grid { grid-template-columns: 1fr; }
    .tool-card { min-height: 380px; }
    .home-why { margin-top: 48px; padding-top: 40px; }
    .home-why-title { font-size: 1.5rem; }
    .home-why-stats { grid-template-columns: repeat(2, 1fr); }
    .home-why-grid { grid-template-columns: 1fr; }
    .home-reviews { margin-top: 48px; padding-top: 40px; }
    .home-reviews-title { font-size: 1.5rem; }
    .home-reviews-masonry { column-count: 1; }
    .gc-panel-grid { grid-template-columns: 1fr; }
    .gc-intro { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 28px 24px 24px; }
    .gc-form-panel { padding: 24px; }
    .gc-page { padding: 24px 16px 48px; }
    .gc-title { font-size: 2rem; }
    .proc-panel { padding: 32px 20px 24px; }
    .proc-pipeline { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Tool detail pages (Game Copier, Enable Shaders) */
.page-game-copier .gc-page,
.page-shaders .gc-page {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    position: relative;
    z-index: 10;
    flex: 1;
}

.page-game-copier .gc-back,
.page-shaders .gc-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--neon-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, text-shadow 0.2s;
}

.page-game-copier .gc-back:hover,
.page-shaders .gc-back:hover {
    color: var(--neon-bright);
    text-shadow: var(--text-glow);
}

.page-game-copier .gc-panel,
.page-shaders .gc-panel {
    position: relative;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-neon-lg), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.page-game-copier .gc-panel-glow,
.page-shaders .gc-panel-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.page-game-copier .gc-panel-grid,
.page-shaders .gc-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.page-game-copier .gc-intro,
.page-shaders .gc-intro {
    padding: 36px 36px 32px;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.page-game-copier .gc-tool-badge,
.page-shaders .gc-tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--neon-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-game-copier .gc-tool-icon,
.page-shaders .gc-tool-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
}

.page-game-copier .gc-title,
.page-shaders .gc-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--neon-bright);
    letter-spacing: 0.02em;
    text-shadow: var(--text-glow);
    margin-bottom: 14px;
    text-align: left;
}

.page-game-copier .gc-lead,
.page-shaders .gc-lead {
    color: var(--neon-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 36ch;
}

.page-game-copier .gc-lead strong,
.page-shaders .gc-lead strong {
    color: var(--neon-soft);
    font-weight: 600;
}

.page-game-copier .gc-steps,
.page-shaders .gc-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-game-copier .gc-steps li,
.page-shaders .gc-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neon-dim);
    font-size: 13px;
}

.page-game-copier .gc-step-num,
.page-shaders .gc-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-neon);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.03);
}

.page-game-copier .gc-form-panel,
.page-shaders .gc-form-panel {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    min-width: 0;
}

.page-game-copier .gc-label,
.page-shaders .gc-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--neon-soft);
    text-transform: uppercase;
}

.page-game-copier .gc-form-group,
.page-shaders .gc-form-group {
    margin-bottom: 20px;
}

.page-game-copier .gc-form-panel input[type="password"],
.page-shaders .gc-form-panel input[type="password"] {
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.page-game-copier .gc-submit,
.page-shaders .gc-submit {
    background: transparent;
    color: var(--neon-bright);
    border: 1px solid var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
    font-size: 16px;
    padding: 16px;
}

.page-game-copier .gc-submit:hover,
.page-shaders .gc-submit:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-bright);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.page-game-copier .gc-submit.is-loading,
.page-shaders .gc-submit.is-loading,
.page-game-copier .gc-submit:disabled,
.page-shaders .gc-submit:disabled {
    background: rgba(255, 255, 255, 0.04);
    color: var(--neon-muted);
}

.page-game-copier .gc-submit.is-loading:hover,
.page-shaders .gc-submit.is-loading:hover,
.page-game-copier .gc-submit:disabled:hover,
.page-shaders .gc-submit:disabled:hover {
    background: rgba(255, 255, 255, 0.04);
}

.page-game-copier .gc-footnote,
.page-shaders .gc-footnote {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--neon-dim);
    letter-spacing: 0.02em;
}

.page-game-copier .gc-form-panel .message,
.page-shaders .gc-form-panel .message {
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 900px) {
    .page-game-copier .gc-panel-grid,
    .page-shaders .gc-panel-grid {
        grid-template-columns: 1fr;
    }

    .page-game-copier .gc-intro,
    .page-shaders .gc-intro {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
}

.gc-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
