/* ============================================
   AIMTOOLS.IO V2 - Improved Conversion-Focused Design
   ============================================ */

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

:root {
    --bg-primary: #0A0E13;
    --bg-secondary: #111827;
    --bg-card: #1A202E;
    
    /* Gaming colors */
    --primary: #00FF88;
    --primary-dark: #00CC6A;
    --accent: #00D9FF;
    --accent-dark: #00B8DB;
    
    /* Text */
    --text: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    
    /* Borders & Effects */
    --border: rgba(255, 255, 255, 0.08);
    --glow-primary: rgba(0, 255, 136, 0.3);
    --glow-accent: rgba(0, 217, 255, 0.3);
}

/* THEME VARIANTS */
body.theme-default {
    --bg-primary: #0A0E13;
    --bg-secondary: #111827;
    --bg-card: #1A202E;
    --primary: #00FF88;
    --primary-dark: #00CC6A;
    --accent: #00D9FF;
    --accent-dark: #00B8DB;
    --text: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --border: rgba(255, 255, 255, 0.08);
    --glow-primary: rgba(0, 255, 136, 0.3);
    --glow-accent: rgba(0, 217, 255, 0.3);
}

/* Black & neon green theme */
body.theme-blackGreen {
    --bg-primary: #02010a;
    --bg-secondary: #020814;
    --bg-card: #050b1a;
    --primary: #00FF41;
    --primary-dark: #00cc34;
    --accent: #00D9FF;
    --accent-dark: #00a6cc;
    --text: #f3f4f6;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --border: rgba(0, 255, 65, 0.25);
    --glow-primary: rgba(0, 255, 65, 0.35);
    --glow-accent: rgba(0, 217, 255, 0.3);
}

/* Full black theme */
body.theme-fullBlack {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-card: #101010;
    --primary: #FFFFFF;
    --primary-dark: #e5e7eb;
    --accent: #00FF88;
    --accent-dark: #00cc6a;
    --text: #F9FAFB;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --border: rgba(255, 255, 255, 0.12);
    --glow-primary: rgba(255, 255, 255, 0.25);
    --glow-accent: rgba(0, 255, 136, 0.35);
}

/* Light / white theme */
body.theme-light {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F3F4F6;
    --bg-card: #FFFFFF;
    --primary: #111827;
    --primary-dark: #0f172a;
    --accent: #00B8DB;
    --accent-dark: #0284c7;
    --text: #111827;
    --text-muted: #4B5563;
    --text-dim: #6B7280;
    --border: rgba(15, 23, 42, 0.12);
    --glow-primary: rgba(15, 23, 42, 0.15);
    --glow-accent: rgba(0, 184, 219, 0.25);
}

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

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-link:hover {
    transform: scale(1.03);
    opacity: 0.95;
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
body.theme-light .logo-img { filter: none; }

.footer-logo-img,
.footer-logo .logo-img {
    height: 32px;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo .io {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switch {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
}

.lang-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

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

.theme-select {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-muted);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.premium-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-primary) !important;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--glow-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.premium-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--glow-primary);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.social-proof {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.proof-icon {
    background: var(--primary);
    color: var(--bg-primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.value-prop h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.benefit-icon {
    font-size: 1.5rem;
}

.cta-section {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-primary);
    box-shadow: 0 10px 40px var(--glow-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px var(--glow-primary);
}

.btn-text,
.btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* ========== LIVE CALCULATOR ========== */
.calculator-live {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.calculator-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

.live-badge {
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.converter-demo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-select-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.game-box label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-box select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.game-box select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
}

.arrow-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-box label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-box input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1.125rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: all 0.3s;
}

.input-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
}

.result-display {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-edpi {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.copy-result {
    padding: 0.875rem 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-result:hover {
    background: var(--primary);
    color: var(--bg-primary);
    transform: scale(1.05);
}

/* ========== FEATURED SECTION ========== */
.featured-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 32, 46, 0.5));
}

.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px var(--glow-primary);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--glow-primary), 0 15px 45px rgba(0, 0, 0, 0.25);
}
.feature-card.featured:hover {
    box-shadow: 0 0 50px var(--glow-primary), 0 25px 55px rgba(0, 0, 0, 0.3);
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== COMPACT TOOLS ========== */
.tools-section {
    padding: 6rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.tools-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tool-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-card-mini:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.tool-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tool-info {
    flex: 1;
}

.tool-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tool-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tool-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========== PRO CTA SECTION ========== */
.pro-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 217, 255, 0.05));
}

.pro-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pro-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pro-cta-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pro-preview-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.pro-mini-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.pro-mini-avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-primary);
}

.pro-mini-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pro-mini-info strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.pro-mini-info span {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.pro-badge {
    padding: 0.375rem 0.75rem;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pro-badge.val {
    background: rgba(255, 77, 109, 0.2);
    color: #FF4D6D;
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ========== HOW IT WORKS ========== */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 32, 46, 0.4));
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 25px var(--glow-primary);
}
.step-card:hover::before { transform: scaleX(1); }
.step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-primary);
    box-shadow: 0 8px 24px var(--glow-primary);
}
.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}
.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SCREENSHOTS ========== */
.screenshots-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 32, 46, 0.3));
}
.screenshot-wrap {
    max-width: 560px;
    margin: 0 auto;
}
.screenshot-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-primary);
    transition: transform 0.3s ease;
}
.screenshot-mock:hover {
    transform: scale(1.02);
}
.mock-bar {
    height: 12px;
    background: linear-gradient(90deg, var(--bg-secondary), var(--border));
    border-bottom: 1px solid var(--border);
}
.mock-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.mock-row.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 217, 255, 0.1));
    border: 1px solid var(--primary);
}
.mock-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.mock-val {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--primary);
}

/* ========== COMPARISON ========== */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}
.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison-table th {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}
.comparison-table th.us,
.comparison-table td.us {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 217, 255, 0.08));
    color: var(--primary);
    font-weight: 700;
}
.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ========== BLOG ========== */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 32, 46, 0.5));
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-arrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.25s ease;
}
.blog-card:hover .blog-arrow {
    transform: translateX(4px);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 6rem 2rem 4rem;
    min-height: 60vh;
}
.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.legal-updated {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.legal-content {
    max-width: 720px;
    line-height: 1.8;
}
.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.legal-content a {
    color: var(--primary);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}
.contact-box .contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}
.contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
}

/* ========== FOOTER ========== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.875rem;
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    display: none;
    z-index: 999;
}

.btn-mobile {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content,
    .pro-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile: slightly larger base for readability */
    html {
        font-size: 16px;
    }
    body {
        font-size: 1rem;
    }

    .value-prop h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }
    .section-label {
        font-size: 0.7rem;
    }
    .benefit-item {
        font-size: 1rem;
    }
    .calculator-header h3 {
        font-size: 1.25rem;
    }
    .result-value {
        font-size: 2.5rem;
    }
    .stat-number {
        font-size: 2.25rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
    .faq-item h3 {
        font-size: 1.1rem;
    }
    .faq-item p,
    .feature-card p,
    .step-card p,
    .why-card p,
    .blog-card p {
        font-size: 1rem;
    }
    .nav-controls {
        gap: 0.5rem;
    }
    .theme-select,
    .lang-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .nav-links {
        display: none;
    }

    .tools-grid-compact,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-links h4 {
        font-size: 1rem;
    }
    .footer-links a,
    .footer-brand p {
        font-size: 0.95rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid,
    .why-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-card,
    .why-card,
    .blog-card {
        padding: 1.5rem;
    }
    .step-card h3,
    .why-card h3,
    .blog-card h3 {
        font-size: 1.15rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    .logo-img {
        height: 30px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== PRO SETTINGS PAGE ========== */
.game-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.game-tab {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-tab:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.game-tab.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 217, 255, 0.1));
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

.tab-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.search-filter-section {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
}

.filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.player-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px var(--glow-primary);
}

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

.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.player-avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.player-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.player-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.team-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.2);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.role-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.settings-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.875rem;
    border-radius: 10px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
}

.view-settings-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.view-settings-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--glow-primary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .game-tabs {
        flex-direction: column;
    }
    
    .filters {
        grid-template-columns: 1fr;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
}
