﻿@property --bg-main {
    syntax: '<color>';
    inherits: true;
    initial-value: #000000;
}
@property --bg-darker {
    syntax: '<color>';
    inherits: true;
    initial-value: #000000;
}
@property --bg-glow-1 {
    syntax: '<color>';
    inherits: true;
    initial-value: rgba(5, 150, 105, 0.08);
}
@property --bg-glow-2 {
    syntax: '<color>';
    inherits: true;
    initial-value: rgba(4, 120, 87, 0.05);
}
@property --bg-glow-3 {
    syntax: '<color>';
    inherits: true;
    initial-value: rgba(6, 78, 59, 0.04);
}
@property --accent {
    syntax: '<color>';
    inherits: true;
    initial-value: #059669;
}
@property --accent-hover {
    syntax: '<color>';
    inherits: true;
    initial-value: #34d399;
}
@property --accent-glow {
    syntax: '<color>';
    inherits: true;
    initial-value: rgba(5, 150, 105, 0.2);
}
@property --card-border-active {
    syntax: '<color>';
    inherits: true;
    initial-value: #059669;
}

:root {
    --bg-main: #000207; /* Near-black graphite */
    --bg-darker: #000104; /* Darkest page base */
    --bg-glow-1: rgba(5, 150, 105, 0.035); /* Muted emerald cloud */
    --bg-glow-2: rgba(4, 120, 87, 0.025); /* Muted deep emerald glow */
    --bg-glow-3: rgba(6, 78, 59, 0.02); /* Forest shadow */
    --card-bg: rgba(1, 3, 8, 0.94); /* Darker glass */
    --card-border: rgba(71, 85, 105, 0.2); /* Subtle slate edge */
    --card-border-active: #059669; /* Rich Emerald active highlight */
    --text-main: #f9fafb; /* Star-white crisp high-contrast */
    --text-muted: #94a3b8; /* Muted tech-slate gray */
    --text-soft: #cbd5e1; /* Silver cyber slate */
    --accent: #059669; /* Rich deep Emerald Jade */
    --accent-hover: #34d399; /* Calm mint green hover highlight */
    --accent-glow: rgba(5, 150, 105, 0.2); /* Calibrated Emerald Jade aura */
    --input-bg: rgba(255, 255, 255, 0.01); /* Glassmorphic ultra-sheer input */
    --fps-green: #10b981; /* Unified success green */
    --low-orange: #f59e0b; /* Unified warning amber */
    --red-alert: #ef4444; /* Unified alert red */
    
    /* CSS transitions variables for seamless dynamic theme swapping */
    transition: 
        --bg-main 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --bg-darker 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --accent 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --accent-hover 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --accent-glow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --card-border-active 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        --bg-glow-1 1s cubic-bezier(0.16, 1, 0.3, 1),
        --bg-glow-2 1s cubic-bezier(0.16, 1, 0.3, 1),
        --bg-glow-3 1s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: auto;
}

.footer-seo-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 14px;
    font-size: 12px;
}

.footer-seo-links a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

html {
    min-height: 100%;
    overflow-x: clip;
    overflow-y: auto;
    scrollbar-color: var(--accent) #050814;
    scrollbar-width: thin;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    touch-action: pan-y;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050814;
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(0, 1, 5, 0.94);
    backdrop-filter: blur(14px) saturate(115%);
    -webkit-backdrop-filter: blur(14px) saturate(115%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    justify-self: start;
}

.logo-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo span span {
    color: var(--accent);
}

/* API-style Р’РєР»Р°РґРєРё РїРµСЂРµРєР»СЋС‡РµРЅРёСЏ СЂРµР¶РёРјРѕРІ */
.header-tabs {
    display: flex;
    justify-self: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 3px;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-tab {
    background: transparent;
    border: none;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.15s;
    outline: none;
}

.header-tab:hover {
    color: var(--text-main);
}

.header-tab.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.header-tab:active {
    transform: scale(0.97);
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-self: end;
}

/* Premium Glass i18n Language Switcher */
.lang-switcher {
    position: relative;
    z-index: 100;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lang-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-switcher.active .lang-btn i {
    transform: rotate(180deg);
}

.lang-switcher.active .lang-btn {
    color: var(--text-main);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(var(--accent-glow), 0.2);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(14, 10, 26, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 6px;
    min-width: 140px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-opt:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.lang-opt.active {
    color: var(--text-main);
    background: rgba(var(--accent-glow), 0.15);
    border-left: 3px solid var(--accent);
}

.flag-icon {
    font-size: 14px;
    line-height: 1;
}

.btn-header-contact {
    display: block;
    background: linear-gradient(135deg, rgba(var(--accent-glow), 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    text-decoration: none;
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-header-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-contact:hover::before {
    opacity: 1;
}

.btn-header-contact:hover {
    border-color: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(var(--accent-glow), 0.4), 
        0 0 20px rgba(var(--accent-glow), 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    color: white;
    animation: neonHueShift 4s linear infinite;
}

@keyframes neonHueShift {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

/* РЎРєСЂС‹С‚РёРµ B2B РєРѕРЅС‚РµРЅС‚Р° РґР»СЏ РіРµР№РјРµСЂРѕРІ */
body.mode-gamer .b2b-section,
body.mode-gamer .integration-section,
body.mode-gamer .footer-section,
body.mode-gamer .for-business-only {
    display: none !important;
}

/* РЎРєСЂС‹С‚РёРµ B2C РєРѕРЅС‚РµРЅС‚Р° РґР»СЏ Р±РёР·РЅРµСЃР° */
body.mode-business .for-gamers-only {
    display: none !important;
}

body.mode-business .b2b-section,
body.mode-business .integration-section,
body.mode-business .footer-section,
body.mode-business .for-business-only {
    display: block !important;
}

/* Hero Section (Centered Widget - Speedtest style) */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, var(--bg-glow-1) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, var(--bg-glow-2) 0%, transparent 50%),
        radial-gradient(circle at 50% 85%, var(--bg-glow-3) 0%, transparent 60%),
        radial-gradient(circle at 75% 70%, rgba(var(--accent-glow), 0.05) 0%, transparent 45%);
    opacity: 0.45;
    filter: blur(36px);
    pointer-events: none;
    z-index: 1;
    animation: none;
    will-change: auto;
    transform: translate3d(0,0,0);
}

@keyframes aurora3DGlow {
    0% {
        filter: blur(120px);
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        filter: blur(140px);
        transform: translate3d(30px, -40px, 0) scale(1.08) rotate(3deg);
    }
    66% {
        filter: blur(110px);
        transform: translate3d(-20px, 30px, 0) scale(0.95) rotate(-2deg);
    }
    100% {
        filter: blur(130px);
        transform: translate3d(15px, -15px, 0) scale(1.02) rotate(1deg);
    }
}

.aurora-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: auto;
    display: none;
}

.sphere-1 {
    top: 10%;
    left: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--bg-glow-1) 0%, transparent 80%);
    animation: floatSphere1 30s ease-in-out infinite alternate;
}

.sphere-2 {
    bottom: 10%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--bg-glow-2) 0%, transparent 80%);
    animation: floatSphere2 35s ease-in-out infinite alternate;
}

.sphere-3 {
    top: 40%;
    left: 45%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--bg-glow-3) 0%, transparent 80%);
    animation: floatSphere3 25s ease-in-out infinite alternate;
}

@keyframes floatSphere1 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(80px, 60px, 0) scale(1.15); }
}

@keyframes floatSphere2 {
    0% { transform: translate3d(0, 0, 0) scale(1.05); }
    100% { transform: translate3d(-90px, -50px, 0) scale(0.9); }
}

@keyframes floatSphere3 {
    0% { transform: translate3d(0, 0, 0) scale(0.9); }
    100% { transform: translate3d(50px, -70px, 0) scale(1.1); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(circle at 50% 45%, black 15%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, black 15%, transparent 70%);
    perspective: 1200px;
    transform: rotateX(32deg) translate3d(0, -60px, -80px);
    transform-origin: top center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-intro {
    text-align: center;
    max-width: 700px;
    animation: fadeIn 0.4s ease-out;
}

.business-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Interactive Grid containing Ads and the Widget */
.hero-interactive-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 10px;
}

/* Ads Common Styles */
.ad-banner {
    background: rgba(13, 20, 38, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s;
}

.ad-banner:hover {
    border-color: rgba(5, 150, 105, 0.15);
}

.ad-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.ad-vertical {
    width: 160px;
    height: 600px;
    flex-shrink: 0;
}

.ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}

.ad-placeholder-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.08);
}

.ad-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
}

.ad-size {
    font-size: 10px;
    background: rgba(5, 150, 105, 0.08);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.ad-horizontal {
    width: 728px;
    height: 90px;
    margin: 15px 0;
}

.ad-content-horizontal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.ad-left-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ad-left-side div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ad-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Center Widget Box (Double card mockup) */
.widget-outer-container {
    position: relative;
    width: 100%;
    max-width: 760px;
    z-index: 5;
}

.widget-glow-ring {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(145deg, rgba(5, 150, 105, 0.22), rgba(4, 120, 87, 0.12), rgba(16, 185, 129, 0.15));
    border-radius: 28px;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
    animation: glowBreath 6s ease-in-out infinite alternate;
}

@keyframes glowBreath {
    0% { opacity: 0.45; filter: blur(45px); }
    100% { opacity: 0.6; filter: blur(55px); }
}

.widget-outer-container .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 28px 32px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.68), 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
}

/* РўРѕРЅРєРёР№ СЃС‚РµРєР»СЏРЅРЅС‹Р№ Р±Р»РёРє РЅР° РєР°СЂС‚РѕС‡РєРµ */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
    z-index: 0;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 28px 65px rgba(0, 0, 0, 0.6), 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.specs-card {
    z-index: 12;
}

.fps-card {
    z-index: 8;
}

/* Specs Card style */
.specs-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.spec-header-icon {
    color: var(--accent);
    font-size: 16px;
}

.specs-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-label {
    width: 110px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
}

.custom-select {
    flex-grow: 1;
    position: relative;
    display: block;
    width: 100%;
}

.custom-select input {
    width: 100%;
    background: rgba(0, 2, 8, 0.7);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.custom-select input:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(4, 8, 17, 0.88);
}

.custom-select input:focus {
    border-color: var(--accent);
    background: rgba(4, 8, 17, 0.94);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.dropdown-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(2, 4, 10, 0.96);
    backdrop-filter: blur(18px) saturate(115%);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    max-height: min(420px, 58vh);
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7), 
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar for Dropdown List */
.dropdown-list::-webkit-scrollbar {
    width: 6px;
}
.dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.dropdown-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.dropdown-list.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-item {
    padding: 11px 16px;
    cursor: pointer;
    font-size: 13px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item::after {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    color: #ffffff;
    font-size: 11px;
}

.dropdown-item:hover {
    background: var(--accent);
    color: #ffffff;
    padding-left: 20px;
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.custom-select-wrapper,
.graphics-select-wrapper {
    flex-grow: 1;
    position: relative;
}

.styled-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    padding: 14px 40px 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.styled-select:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.styled-select:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.05);
}

.styled-select option {
    background-color: #0c0914 !important;
    color: #f9fafb !important;
    padding: 12px;
}

.custom-select-wrapper::after,
.graphics-select-wrapper::after {
    display: none !important;
}

/* FPS Card display */
.fps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.fps-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.header-fps-icon {
    color: var(--fps-green);
    font-size: 18px;
}

.search-container {
    position: relative;
    margin-bottom: 15px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
}

.search-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    padding: 14px 22px 14px 44px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-container input:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.search-container input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.game-display {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 470px; /* Increased height for full premium dashboard view with breathing room */
    margin-bottom: 15px;
    background: #010309;
    border: 1px solid var(--card-border);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#game-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.game-display:hover #game-bg {
    transform: scale(1.03); /* Dynamic immersive hover scale */
    opacity: 0.55;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(2, 4, 10, 0.35) 0%, rgba(0, 2, 7, 0.94) 100%);
    z-index: 2;
}

.game-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: auto;
}

.game-genre-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    transition: all 0.3s ease;
}

#game-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
}

.game-tip-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.4;
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-tip-box i {
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}

.ram-status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ram-status-box i {
    font-size: 11px;
    flex-shrink: 0;
}

.ram-status-box.ram-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.12);
}

.ram-status-box.ram-warning i {
    color: #ef4444;
}

.ram-status-box.ram-ok {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #a7f3d0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.08);
}

.ram-status-box.ram-ok i {
    color: #10b981;
}

.fps-results {
    margin-top: auto;
}

/* Premium single FPS card styles */
.fps-display-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(3, 5, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.25s ease-out;
}

.fps-main-num-wrapper {
    display: flex;
    flex-direction: column;
}

.fps-main-num-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2px;
}

.fps-main-num-value {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    color: var(--fps-green);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fps-main-num-value span {
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    color: var(--text-muted);
}

.fps-low-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.fps-low-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2px;
}

.fps-low-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--low-orange);
    font-style: italic;
}

.fps-no-data-mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(3, 5, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px dashed var(--card-border);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-soft);
    font-size: 12px;
    gap: 6px;
    animation: fadeIn 0.25s ease-out;
}

.fps-no-data-mode i {
    font-size: 16px;
    color: var(--low-orange);
}

.controls {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.controls button {
    flex: 1;
    background: linear-gradient(180deg, #1b2234 0%, #111522 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.controls button:hover:not(:disabled) {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
}

.controls button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.controls button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    border-color: var(--card-border);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: none;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

.footer strong {
    color: var(--text-soft);
}

.source-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-hover);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.source-link:hover {
    color: #ffffff;
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.32);
    transform: translateY(-2px);
}

.source-link .fa-youtube {
    font-size: 15px;
}

.source-empty {
    color: var(--text-muted);
    opacity: 0.65;
    font-weight: 700;
}

.estimated-fps-top {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.estimated-fps-top.source-direct {
    color: #8ff5d0 !important;
}

.estimated-fps-top.source-same-hardware {
    color: #bae6fd !important;
}

.estimated-fps-top.source-similar,
.estimated-fps-top.source-gpu-only {
    color: #cbd5e1 !important;
}

.estimated-fps-top.source-gpu-only {
    opacity: 0.72 !important;
}


.no-data-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--red-alert);
    color: #fca5a5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 12px;
}

.no-data-banner i {
    font-size: 16px;
    color: var(--red-alert);
}

/* Minimal B2C Footer style */
.gamer-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin-top: 35px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.gamer-footer a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.gamer-footer a:hover {
    color: var(--accent);
}

/* Scroll Indicator Arrow */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--text-soft);
}

.arrow-animated {
    animation: bounce 2s infinite;
}

/* B2B presentation section styling (GSAP trigger) */
.b2b-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
    border-top: 1px solid var(--card-border);
}

.section-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(4, 120, 87, 0.06) 50%, transparent 80%);
    filter: blur(50px);
    pointer-events: none;
}

.b2b-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.section-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* Grid of B2B features with 3D Perspective Tilt on Hover */
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    perspective: 1000px; /* 3D Perspective */
}

.b2b-card {
    background: var(--card-bg);
    backdrop-filter: blur(28px) saturate(130%);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* РЎС‚РµРєР»СЏРЅРЅС‹Р№ СЂРµС„Р»РµРєСЃ РЅР° b2b-card */
.b2b-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.b2b-card:hover {
    transform: translateY(-6px) rotateX(1.5deg) rotateY(1.5deg);
    border-color: rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.22);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6), 
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 25px;
    transform: translateZ(20px); /* 3D pop effect */
    border: 1px solid currentColor;
}

.red-theme {
    color: var(--red-alert);
}

.green-theme {
    color: var(--fps-green);
}

.blue-theme {
    color: var(--accent);
}

.b2b-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transform: translateZ(15px);
}

.b2b-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    transform: translateZ(10px);
}

.b2b-card p strong {
    color: var(--text-main);
}

/* Stat banner styles */
.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(14, 10, 26, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    padding: 40px;
    margin-top: 80px;
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #059669, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-box {
    display: flex;
    align-items: stretch;
    background: var(--card-bg);
    backdrop-filter: blur(28px) saturate(130%);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 2px 4px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.65), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.promo-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--fps-green);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}

.promo-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-soft);
}

.promo-list li i {
    color: var(--fps-green);
    font-size: 12px;
}

.integration-code-box {
    flex: 1;
    background: #080c14;
    border-left: 1px solid var(--card-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.code-box-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #10b981; }

.code-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 10px;
}

.code-content {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #a855f7;
    line-height: 1.6;
    overflow-x: auto;
    margin: 0;
}

.code-content code {
    font-family: inherit;
    color: #818cf8;
}

/* Contacts & Footer styling */
.footer-section {
    position: relative;
    padding: 100px 0 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.03) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.05);
}

.footer-contact-form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-form h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-contact-form p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    padding: 12px 20px;
    border-radius: 14px;
    transition: border-color 0.2s, background-color 0.2s;
}

.contact-item:hover {
    border-color: var(--card-border-active);
    background: rgba(255, 255, 255, 0.02);
}

.contact-item i {
    font-size: 20px;
    color: var(--accent);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-val:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--card-border);
    padding-top: 30px;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-bottom strong {
    color: var(--text-soft);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GSAP scroll animation entry classes */
.animate-trigger {
    opacity: 0;
    transform: translateY(30px);
}

.animate-card {
    opacity: 0;
    transform: translateY(45px);
}

/* Game Search Row in the Game Zone */
.game-search-row {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}
.game-search-row .search-container {
    flex: 1;
    margin-bottom: 0;
}

.game-search-row .search-container input {
    background: rgba(0, 2, 8, 0.72);
    border-color: rgba(255, 255, 255, 0.07);
}

.game-search-row .search-container input:hover {
    background: rgba(4, 8, 17, 0.9);
    border-color: rgba(255, 255, 255, 0.14);
}

.game-search-row .search-container input:focus {
    background: rgba(4, 8, 17, 0.95);
    border-color: var(--accent);
}

.game-search-row .graphics-select-wrapper {
    display: flex;
    gap: 8px;
    width: 250px;
    flex-shrink: 0;
}
.game-search-row .graphics-select-wrapper select {
    flex: 1;
    min-width: 0;
}

/* Dynamic Game Card Themes (CSS Wizardry for Game Accent Customization) */
/* Dynamic Game Card Themes (CSS Wizardry for Game Accent Customization - Globally on body) */
body.theme-cyberpunk {
    --accent: #ff007f;
    --accent-hover: #ff5ea5;
    --fps-green: #39ff14;
    --card-border-active: #ff007f;
    --accent-glow: rgba(255, 0, 127, 0.25);
    --bg-glow-1: rgba(255, 0, 127, 0.12);
    --bg-glow-2: rgba(234, 179, 8, 0.08);
    --bg-glow-3: rgba(0, 240, 255, 0.1);
}
body.theme-fantasy {
    --accent: #8b5cf6;
    --accent-hover: #a78bfa;
    --fps-green: #10b981;
    --card-border-active: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.25);
    --bg-glow-1: rgba(139, 92, 246, 0.12);
    --bg-glow-2: rgba(239, 68, 68, 0.08);
    --bg-glow-3: rgba(16, 185, 129, 0.08);
}
body.theme-western {
    --accent: #f97316;
    --accent-hover: #fb923c;
    --fps-green: #10b981;
    --card-border-active: #f97316;
    --accent-glow: rgba(249, 115, 22, 0.22);
    --bg-glow-1: rgba(249, 115, 22, 0.12);
    --bg-glow-2: rgba(234, 179, 8, 0.08);
    --bg-glow-3: rgba(239, 68, 68, 0.06);
}
body.theme-apocalypse {
    --accent: #22c55e;
    --accent-hover: #4ade80;
    --fps-green: #39ff14;
    --card-border-active: #22c55e;
    --accent-glow: rgba(34, 197, 94, 0.25);
    --bg-glow-1: rgba(34, 197, 94, 0.12);
    --bg-glow-2: rgba(239, 68, 68, 0.08);
    --bg-glow-3: rgba(245, 158, 11, 0.06);
}
body.theme-neoncity {
    --accent: #00f0ff;
    --accent-hover: #60efff;
    --fps-green: #00f0ff;
    --card-border-active: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.3);
    --bg-glow-1: rgba(0, 240, 255, 0.14);
    --bg-glow-2: rgba(139, 92, 247, 0.08);
    --bg-glow-3: rgba(16, 185, 129, 0.08);
}
body.theme-scifi {
    --accent: #a855f7;
    --accent-hover: #c084fc;
    --fps-green: #d8b4fe;
    --card-border-active: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.25);
    --bg-glow-1: rgba(168, 85, 247, 0.12);
    --bg-glow-2: rgba(6, 182, 212, 0.08);
    --bg-glow-3: rgba(236, 72, 153, 0.06);
}
body.theme-cozyvoxel {
    --accent: #16a34a;
    --accent-hover: #22c55e;
    --fps-green: #f59e0b;
    --card-border-active: #16a34a;
    --accent-glow: rgba(22, 163, 74, 0.22);
    --bg-glow-1: rgba(22, 163, 74, 0.12);
    --bg-glow-2: rgba(245, 158, 11, 0.1);
    --bg-glow-3: rgba(16, 185, 129, 0.08);
}
body.theme-racing {
    --accent: #eab308;
    --accent-hover: #fde047;
    --fps-green: #ef4444;
    --card-border-active: #eab308;
    --accent-glow: rgba(234, 179, 8, 0.22);
    --bg-glow-1: rgba(234, 179, 8, 0.12);
    --bg-glow-2: rgba(239, 68, 68, 0.1);
    --bg-glow-3: rgba(0, 240, 255, 0.06);
}
body.theme-shooter {
    --accent: #ea580c;
    --accent-hover: #f97316;
    --fps-green: #f59e0b;
    --card-border-active: #ea580c;
    --accent-glow: rgba(234, 88, 12, 0.25);
    --bg-glow-1: rgba(234, 88, 12, 0.12);
    --bg-glow-2: rgba(239, 68, 68, 0.08);
    --bg-glow-3: rgba(168, 85, 247, 0.06);
}
body.theme-sports {
    --accent: #10b981;
    --accent-hover: #34d399;
    --fps-green: #eab308;
    --card-border-active: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.25);
    --bg-glow-1: rgba(16, 185, 129, 0.12);
    --bg-glow-2: rgba(4, 120, 87, 0.08);
    --bg-glow-3: rgba(245, 158, 11, 0.06);
}
body.theme-animefantasy {
    --accent: #ec4899;
    --accent-hover: #f472b6;
    --fps-green: #f59e0b;
    --card-border-active: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.25);
    --bg-glow-1: rgba(236, 72, 153, 0.14);
    --bg-glow-2: rgba(168, 85, 247, 0.08);
    --bg-glow-3: rgba(6, 182, 212, 0.08);
}
body.theme-indie {
    --accent: #0ea5e9;
    --accent-hover: #38bdf8;
    --fps-green: #06b6d4;
    --card-border-active: #0ea5e9;
    --accent-glow: rgba(14, 165, 233, 0.22);
    --bg-glow-1: rgba(14, 165, 233, 0.12);
    --bg-glow-2: rgba(6, 182, 212, 0.08);
    --bg-glow-3: rgba(139, 92, 246, 0.08);
}

/* Responsive Adaptive Layout (Mobile & Tablet) */
@media (max-width: 1024px) {
    .ad-banner.ad-vertical {
        display: none; /* Hide vertical side banners on tablets */
    }
    .hero-interactive-grid {
        gap: 0;
    }
    .stats-banner {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .promo-box {
        flex-direction: column;
    }
    .integration-code-box {
        border-left: none;
        border-top: 1px solid var(--card-border);
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }
    .logo span {
        display: none; /* Hide text logo on small screens, keep icon */
    }
    .header-tab span {
        font-size: 12px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-section {
        padding-top: 80px;
    }
    .ad-banner.ad-horizontal {
        width: 100%;
        height: auto;
        padding: 15px;
    }
    .ad-content-horizontal {
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }
    .ad-left-side {
        flex-direction: column;
        text-align: center;
    }
    .ad-left-side div {
        align-items: center;
    }
    .b2b-grid {
        grid-template-columns: 1fr; /* Single column for benefits on mobile */
    }
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .card {
        padding: 15px 18px;
    }
    .gamer-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .game-search-row {
        flex-direction: column;
        gap: 8px;
    }
    .game-search-row .graphics-select-wrapper {
        width: 100%;
    }
}

/* ==========================================================================
   TrueFPS Premium UI/UX Improvements: Preset Charts & Bottleneck Analyzer
   ========================================================================== */

/* 1. Header & Tabs inside Game Overlay */
.game-display-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: auto;
}

.game-display-tabs {
    display: flex;
    gap: 6px;
    background: rgba(0, 2, 8, 0.78);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.display-tab {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 9px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.display-tab i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.display-tab:hover {
    color: var(--text-main);
}

.display-tab:hover i {
    transform: scale(1.1);
}

.display-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 2. Toggleable Tab Views */
.tab-view {
    display: none;
    flex-direction: column;
    width: 100%;
    /* Р—Р°РЅРёРјР°РµС‚ РІСЃСЋ РѕСЃС‚Р°РІС€СѓСЋСЃСЏ РІС‹СЃРѕС‚Сѓ РѕРІРµСЂР»РµСЏ */
    height: auto;
    margin-top: 15px;
}

.tab-view.active {
    display: flex;
    animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Preset Performance Comparison Chart (Horizontal Bar Chart) */
.preset-bars-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    background: rgba(0, 2, 8, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.preset-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.preset-bar-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    width: 66px;
    text-align: left;
}

.preset-bar-track {
    flex-grow: 1;
    height: 11px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.01);
    position: relative;
}

.preset-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.5) 0%, var(--accent) 100%);
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.25);
    transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Game theme integration for Preset Comparison Chart */
.theme-cyberpunk .preset-bar-fill {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.5) 0%, #ec4899 100%) !important;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.3) !important;
}

.theme-fantasy .preset-bar-fill {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.5) 0%, #a855f7 100%) !important;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.3) !important;
}

.theme-apocalypse .preset-bar-fill {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.5) 0%, #ef4444 100%) !important;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3) !important;
}

.theme-scifi .preset-bar-fill {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.5) 0%, #06b6d4 100%) !important;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.3) !important;
}

.theme-racing .preset-bar-fill {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.5) 0%, #f59e0b 100%) !important;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.3) !important;
}

.theme-indie .preset-bar-fill {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.5) 0%, #8b5cf6 100%) !important;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3) !important;
}

.theme-animefantasy .preset-bar-fill {
    background: linear-gradient(90deg, rgba(244, 63, 94, 0.5) 0%, #f43f5e 100%) !important;
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.3) !important;
}

.theme-sports .preset-bar-fill {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.5) 0%, #10b981 100%) !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3) !important;
}

.theme-western .preset-bar-fill {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.5) 0%, #d97706 100%) !important;
    box-shadow: 0 0 8px rgba(217, 119, 6, 0.3) !important;
}

.theme-cozyvoxel .preset-bar-fill {
    background: linear-gradient(90deg, rgba(132, 204, 22, 0.5) 0%, #84cc16 100%) !important;
    box-shadow: 0 0 8px rgba(132, 204, 22, 0.3) !important;
}

.preset-bar-value {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
    font-style: italic;
    width: 55px;
    text-align: right;
}

/* ==========================================================================
   TrueFPS Premium Gauge & Multi-mode Chart Styles
   ========================================================================== */

/* --- Speedometer Gauge Style --- */
.fps-speedometer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto 15px auto;
}

.speedometer-inner {
    position: relative;
    width: 225px;
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(14, 10, 26, 0.5) 0%, rgba(6, 3, 14, 0.75) 100%);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6), 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* РњСЏРіРєРѕРµ СЃРІРµС‡РµРЅРёРµ РІ С†РµРЅС‚СЂРµ РїСЂРёР±РѕСЂР° */
.speedometer-inner::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(var(--accent-glow), 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Р­Р»РµРіР°РЅС‚РЅС‹Р№ СЃС‚РµРєР»СЏРЅРЅС‹Р№ Р±Р»РёРє СЃРІРµСЂС…Сѓ */
.speedometer-inner::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 15px;
    right: 15px;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 90px 90px 0 0;
    pointer-events: none;
    z-index: 3;
}

.speedometer-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    z-index: 1;
}

/* Р”РµР»РµРЅРёСЏ С€РєР°Р»С‹ РїСЂРёР±РѕСЂР° */
.speedometer-ticks {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 6;
    stroke-linecap: butt;
    stroke-dasharray: 2, 8; /* РљСЂР°СЃРёРІС‹Рµ Р°РєРєСѓСЂР°С‚РЅС‹Рµ С€С‚СЂРёС…Рё РїРѕ РєРѕРЅС‚СѓСЂСѓ */
}

.speedometer-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 6;
    stroke-linecap: round;
}

/* Р Р°Р·РјС‹С‚РѕРµ РїРѕРґРєР»Р°РґРѕС‡РЅРѕРµ СЃРІРµС‡РµРЅРёРµ РЅРµРѕРЅРѕРІРѕР№ С‚СЂСѓР±РєРё */
.speedometer-glow {
    fill: none;
    stroke: var(--accent);
    stroke-width: 14;
    stroke-linecap: round;
    filter: blur(8px);
    opacity: 0.35;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
    animation: speedometerPulse 3s ease-in-out infinite alternate;
}

@keyframes speedometerPulse {
    0% {
        opacity: 0.3;
        filter: blur(7px) saturate(120%);
    }
    100% {
        opacity: 0.5;
        filter: blur(10px) saturate(140%);
    }
}

/* РЇСЂРєРѕРµ РїР»РѕС‚РЅРѕРµ СЏРґСЂРѕ РЅРµРѕРЅРѕРІРѕР№ РЅРёС‚Рё СЃРІРµСЂС…Сѓ */
.speedometer-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
}

/* Р¦РµРЅС‚СЂР°Р»СЊРЅС‹Р№ РєРѕРЅС‚РµРЅС‚ */
.speedometer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    margin-top: -8px;
}

.speedometer-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.speedometer-value {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.03em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
    transition: text-shadow 0.4s ease;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.speedometer-fps-unit {
    font-size: 25px;
    font-weight: 900;
    color: var(--text-main);
    font-style: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.92;
}

.speedometer-badge {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

.speedometer-low {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Р¦РІРµС‚РѕРІС‹Рµ СЃС…РµРјС‹ СЃРїРёРґРѕРјРµС‚СЂР° РїРѕ С„СЂРµР№РјСЂРµР№С‚Сѓ */

/* LOW: <30 FPS */
.fps-speedometer-wrapper.color-low .speedometer-fill {
    stroke: #ef4444;
}
.fps-speedometer-wrapper.color-low .speedometer-value {
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}
.fps-speedometer-wrapper.color-low .speedometer-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

/* MEDIUM: 30-60 FPS */
.fps-speedometer-wrapper.color-medium .speedometer-fill {
    stroke: #f59e0b;
}
.fps-speedometer-wrapper.color-medium .speedometer-value {
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}
.fps-speedometer-wrapper.color-medium .speedometer-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

/* HIGH: 60-120 FPS */
.fps-speedometer-wrapper.color-high .speedometer-fill {
    stroke: #10b981;
}
.fps-speedometer-wrapper.color-high .speedometer-value {
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}
.fps-speedometer-wrapper.color-high .speedometer-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* ULTRA: 120+ FPS */
.fps-speedometer-wrapper.color-ultra .speedometer-fill {
    stroke: #06b6d4;
}
.fps-speedometer-wrapper.color-ultra .speedometer-value {
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}
.fps-speedometer-wrapper.color-ultra .speedometer-badge {
    background: rgba(6, 182, 212, 0.18);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
}

/* 4. Chart Mode Selector (Presets VS Resolutions) */
.chart-mode-selector {
    display: flex;
    gap: 6px;
    background: rgba(3, 5, 10, 0.45);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-self: center;
    margin-bottom: 12px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chart-mode-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-mode-btn:hover {
    color: var(--text-main);
}

.chart-mode-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* РќР°СЃС‚СЂРѕР№РєРё РґР»СЏ С‚РµРј РїРѕРґ РёРіСЂС‹ */
.theme-cyberpunk .chart-mode-btn.active {
    color: #ec4899;
}
.theme-fantasy .chart-mode-btn.active {
    color: #a855f7;
}
.theme-apocalypse .chart-mode-btn.active {
    color: #ef4444;
}
.theme-scifi .chart-mode-btn.active {
    color: #06b6d4;
}
.theme-racing .chart-mode-btn.active {
    color: #f59e0b;
}
.theme-indie .chart-mode-btn.active {
    color: #8b5cf6;
}
.theme-animefantasy .chart-mode-btn.active {
    color: #f43f5e;
}
.theme-sports .chart-mode-btn.active {
    color: #10b981;
}
.theme-western .chart-mode-btn.active {
    color: #d97706;
}
.theme-cozyvoxel .chart-mode-btn.active {
    color: #84cc16;
}

/* ==========================================================================
   TrueFPS simplified UX & Quick Start Styling
   ========================================================================== */

.ux-welcome-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 290px;
    padding: 15px 10px;
    text-align: center;
    animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.ux-welcome-header {
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dropdown-item-muted {
    cursor: default;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
}

.dropdown-item-muted:hover {
    background: transparent;
    color: var(--text-muted);
}

.dropdown-count-hint {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4px;
}

.ux-magic-icon {
    color: var(--accent);
    font-size: 16px;
    animation: bounce 3s infinite;
}

.ux-welcome-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.ux-steps-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 22px;
}

.ux-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ux-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.ux-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ux-step:hover .ux-step-num {
    background: var(--accent);
    color: #030008;
    box-shadow: 0 0 10px var(--accent-glow);
}

.ux-step-content h5 {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
}

.ux-step-content p {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.2;
}

.ux-quick-start-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ux-or-divider {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ux-or-divider::before,
.ux-or-divider::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    max-width: 80px;
}

.btn-quick-start {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(4, 120, 87, 0.08) 100%);
    border: 1px solid rgba(5, 150, 105, 0.3);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quick-start i {
    color: var(--accent);
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.btn-quick-start:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25), 0 0 10px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, var(--accent) 0%, #34d399 100%);
    color: #030008;
}

.btn-quick-start:hover i {
    color: #030008;
}

/* Pulsing input guides */
.pulse-glow-highlight {
    animation: inputPulseGlow 1.8s infinite alternate !important;
}

@keyframes inputPulseGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    100% {
        border-color: var(--accent);
        box-shadow: 0 0 15px var(--accent-glow), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* ==========================================================================
   TrueFPS New UX Simplified Enhancements (Clear buttons)
   ========================================================================== */

/* 1. Clear input buttons inside selects/search inputs */
.custom-select, .search-container {
    position: relative;
}

.custom-select input {
    padding-right: 40px !important; /* Make room for the clear button */
}

.search-container input {
    padding-right: 40px !important; /* Make room for the clear button */
}

.input-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

.input-clear-btn.visible {
    opacity: 0.6;
    pointer-events: auto;
}

.input-clear-btn.visible:hover {
    opacity: 1;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   TrueFPS Benchmarks Section (AI-Bait structured comparison tables)
   ========================================================================== */

.benchmarks-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--card-border);
}

.benchmarks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(28px) saturate(130%);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin: 20px 0 30px 0;
}

.benchmarks-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.benchmarks-table th, 
.benchmarks-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--card-border);
}

.benchmarks-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.02);
}

.benchmarks-table tr:last-child td {
    border-bottom: none;
}

.benchmarks-table tr {
    transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.benchmarks-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cpu-cell {
    font-weight: 600;
    color: var(--text-main);
}

.gpu-cell {
    font-weight: 600;
    color: var(--text-main);
}

.benchmarks-table i {
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.text-primary {
    color: var(--accent) !important;
}

.text-secondary {
    color: #60a5fa !important;
}

.text-premium {
    color: #fbbf24 !important; /* Gold */
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-ultra {
    background: rgba(16, 185, 129, 0.1);
    color: var(--fps-green);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-high {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

/* FPS styling */
.fps-cell {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--fps-green);
    font-size: 16px;
}

.low-cell {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--low-orange);
}

.stability-high {
    color: #34d399;
    font-weight: 600;
}

.stability-perfect {
    color: #10b981;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Highlights */
.highlight-row {
    background: rgba(16, 185, 129, 0.02);
}

.highlight-row-premium {
    background: rgba(251, 191, 36, 0.02);
    border-left: 3px solid #fbbf24;
}

.text-glow {
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
    color: #34d399 !important;
}

.upsell-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #030008;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
    text-shadow: none;
}

/* Benchmarks Footer */
.benchmarks-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 10px;
}

.benchmarks-dataset-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benchmarks-dataset-info i {
    color: var(--accent);
}

/* ==========================================================================
   TrueFPS Benchmarks View Toggling, Filtering & Pagination Styles
   ========================================================================== */

/* РџРѕ СѓРјРѕР»С‡Р°РЅРёСЋ РІ СЂРµР¶РёРјРµ РіРµР№РјРµСЂР° СЃРєСЂС‹РІР°РµРј СЃРµРєС†РёСЋ Р±РµРЅС‡РјР°СЂРєРѕРІ */
body.mode-gamer .benchmarks-section {
    display: none;
}
body.mode-business .benchmarks-section {
    display: none;
}
body.mode-benchmarks .hero-section,
body.mode-benchmarks .b2b-section,
body.mode-benchmarks .integration-section,
body.mode-benchmarks .footer-section {
    display: none;
}
body.mode-benchmarks .benchmarks-section {
    display: block !important;
}
body.mode-benchmarks .gamer-footer {
    display: none;
}

/* Р¤РёР»СЊС‚СЂС‹ Рё РїРѕРёСЃРє РІ Р±Р°Р·Рµ Р±РµРЅС‡РјР°СЂРєРѕРІ */
.db-filters-panel {
    background: var(--card-bg);
    backdrop-filter: blur(28px) saturate(130%);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.db-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.db-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

#db-search-input {
    width: 100%;
    background: rgba(3, 5, 10, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

#db-search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.db-selects-row {
    display: flex;
    gap: 20px;
}

.db-select-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-select-wrapper label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* РЎРїРёРЅРЅРµСЂ Р·Р°РіСЂСѓР·РєРё */
.db-loader-spinner {
    text-align: center;
    color: var(--text-soft);
    padding: 60px 0;
    font-size: 16px;
    font-weight: 500;
}

.db-loader-spinner i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 20px;
}

/* РџР°РіРёРЅР°С†РёСЏ */
.db-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.db-page-btn {
    background: linear-gradient(180deg, #1b2234 0%, #111522 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-page-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
}

.db-page-btn:active:not(:disabled) {
    transform: translateY(0);
}

.db-page-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    box-shadow: none;
}

.db-page-info {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
}

@media (max-width: 768px) {
    .db-selects-row {
        flex-direction: column;
        gap: 15px;
    }

    .widget-outer-container {
        max-width: 100%;
    }
    
    .card {
        padding: 20px 24px;
    }
    
    .custom-select input,
    .styled-select,
    .search-container input {
        font-size: 13px !important;
        padding: 12px 18px !important;
    }
    
    .styled-select {
        padding-right: 35px !important;
    }
    
    .search-container input {
        padding-left: 40px !important;
    }
    
    .search-icon {
        left: 15px !important;
    }
    
    .speedometer-inner {
        width: 190px !important;
        height: 190px !important;
    }
    
    .speedometer-value {
        font-size: 47px !important;
    }
    
    .speedometer-fps-unit {
        font-size: 21px !important;
    }
    
    .speedometer-content {
        margin-top: -6px !important;
    }
    
    .speedometer-low {
        font-size: 9px !important;
    }
    
    .game-display {
        height: 440px !important;
    }
}

/* ==========================================================================
   Premium Custom Glassmorphism Selects
   ========================================================================== */
.tf-custom-select {
    position: relative;
    width: 100%;
    user-select: none;
    z-index: 10;
}

.tf-custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(0, 2, 8, 0.72);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.tf-custom-select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(4, 8, 17, 0.9);
}

.tf-custom-select.active .tf-custom-select-trigger {
    border-color: var(--accent);
    background: rgba(4, 8, 17, 0.95);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tf-custom-select-arrow {
    font-size: 12px;
    color: var(--text-soft);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 8px;
}

.tf-custom-select.active .tf-custom-select-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.tf-custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(2, 4, 10, 0.97);
    backdrop-filter: blur(32px) saturate(140%);
    -webkit-backdrop-filter: blur(32px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7), 
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.tf-custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.tf-custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.tf-custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.tf-custom-select.active .tf-custom-select-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.tf-custom-select-option {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.tf-custom-select-option:last-child {
    border-bottom: none;
}

.tf-custom-select-option:hover {
    background: var(--accent);
    color: #ffffff;
    padding-left: 24px;
}

.tf-custom-select-option.selected {
    background: rgba(5, 150, 105, 0.12);
    color: var(--accent);
    font-weight: 600;
}

.game-search-row .graphics-select-wrapper .tf-custom-select {
    flex: 1;
    min-width: 0;
}

/* Hide original selects */
.styled-select {
    display: none !important;
}

/* Hide ad banners */
.ad-banner {
    display: none !important;
}

/* Center and adjust widget outer container now that ads are gone */
.widget-outer-container {
    max-width: 820px !important;
    margin: 0 auto;
}

/* Mobile optimizations for selects */
@media (max-width: 768px) {
    .tf-custom-select-trigger {
        padding: 12px 16px;
        font-size: 14px;
    }
    .tf-custom-select-option {
        padding: 10px 14px;
        font-size: 13px;
    }
}


/* ==========================================================================
   TRUEFPS SYSTEM REQUIREMENTS TAB & INTERACTIVE HARDWARE COMPARISON
   ========================================================================== */
.requirements-table {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
    margin-top: 12px;
    padding: 8px !important;
}

.req-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    padding: 13px 16px !important;
    background: rgba(0, 2, 8, 0.62) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    align-items: center;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.req-row.req-header {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-soft);
    letter-spacing: 1px;
    padding-bottom: 8px;
}

.req-label {
    font-weight: 600;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.req-label i {
    color: var(--accent);
    font-size: 15px;
}

.req-val {
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 8px;
}

.req-val.min {
    color: var(--text-soft);
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.status-pass {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.28) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.08);
}

.status-pass .req-label {
    color: var(--accent) !important;
}

.status-upgrade {
    background: rgba(245, 158, 11, 0.08) !important;
    border-color: rgba(245, 158, 11, 0.24) !important;
}

.status-fail {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: rgba(239, 68, 68, 0.28) !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.08);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
}

.status-badge.pass {
    background: rgba(16, 185, 129, 0.16);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.status-badge.upgrade {
    background: rgba(245, 158, 11, 0.16);
    color: var(--low-orange);
    border: 1px solid rgba(245, 158, 11, 0.28);
}


/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.requirements-table .req-row.req-header {
    background: rgba(0, 2, 8, 0.82) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 2px solid var(--accent) !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    letter-spacing: 1.2px !important;
    padding: 13px 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.requirements-table .req-row > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-right: 12px !important;
}

.requirements-table .req-row > div:not(:first-child) {
    padding-left: 12px !important;
}

/* Final visual consistency and mobile adaptation layer */
body.theme-cyberpunk,
body.theme-fantasy,
body.theme-apocalypse,
body.theme-scifi,
body.theme-racing,
body.theme-western,
body.theme-cozyvoxel,
body.theme-sports,
body.theme-animefantasy,
body.theme-indie,
body.theme-neoncity {
    --bg-main: #000207;
    --bg-darker: #000104;
    --card-bg: rgba(1, 3, 8, 0.94);
    --card-border: rgba(71, 85, 105, 0.2);
    --accent: #10b981;
    --accent-hover: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.22);
    --card-border-active: #10b981;
    --fps-green: #10b981;
}

@media (max-width: 768px) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    body {
        background: #000104 !important;
    }

    .hero-grid-pattern,
    .hero-background-glow,
    .aurora-sphere,
    .widget-glow-ring,
    .section-glow-effect,
    .footer-glow,
    .card::before {
        display: none !important;
    }

    .site-header,
    .card,
    .custom-select input,
    .dropdown-list,
    .custom-select-wrapper,
    .search-container,
    .search-container input,
    .styled-select,
    .game-display-tabs,
    .preset-bars-container,
    .tf-custom-select-trigger,
    .tf-custom-select-options,
    .requirements-table .req-row {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
    }

    .card,
    .card:hover,
    .b2b-card:hover,
    .promo-box:hover,
    .ux-step:hover,
    .btn-quick-start:hover,
    .source-link:hover,
    .tf-custom-select-trigger:hover {
        transform: none !important;
    }

    .card {
        background: rgba(0, 2, 7, 0.97) !important;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.58) !important;
    }

    .game-display {
        background: #000104 !important;
    }

    .game-display:hover #game-bg {
        transform: none !important;
    }

    #game-bg {
        filter: none !important;
        transform: none !important;
    }

    .ux-welcome-header {
        display: none !important;
    }

    .hero-background-glow {
        inset: 0;
        width: 100%;
        overflow: hidden;
        filter: blur(28px);
    }

    .header-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 12px;
        gap: 8px;
    }

    .header-tabs {
        justify-self: center;
        gap: 2px;
        padding: 2px;
    }

    .header-tab {
        padding: 7px 10px;
        gap: 5px;
        font-size: 12px;
    }

    .header-tab i {
        display: none;
    }

    .header-right-actions {
        gap: 6px;
    }

    .lang-btn {
        padding: 7px 9px;
    }

    .btn-header-contact {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .hero-container {
        padding: 0 12px;
        gap: 16px;
    }

    .hero-title {
        font-size: 27px;
        line-height: 1.12;
    }

    .widget-glow-ring {
        display: none;
    }

    .spec-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .spec-label {
        width: auto;
    }

    .game-search-row {
        flex-direction: column;
    }

    .game-search-row .search-container,
    .game-search-row .graphics-select-wrapper {
        width: 100%;
    }

    .dropdown-list,
    .tf-custom-select-options {
        max-height: min(280px, 48vh);
    }

    .game-display {
        min-height: 520px;
        height: auto !important;
    }

    .game-overlay {
        position: relative;
        min-height: 520px;
    }

    #game-bg {
        position: absolute;
        inset: 0;
    }

    .game-display-header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .game-display-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .display-tab {
        flex: 1 0 auto;
        justify-content: center;
        padding: 7px 9px;
    }

    .requirements-table {
        overflow-x: auto;
    }

    .req-row {
        grid-template-columns: minmax(90px, 0.9fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr);
        min-width: 390px;
    }

    .controls {
        margin-top: 10px;
    }
}

@media (max-width: 430px) {
    .site-header {
        height: auto;
        min-height: 62px;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        grid-template-areas: "tabs actions";
    }

    .logo {
        display: none;
    }

    .header-tabs {
        grid-area: tabs;
        justify-self: start;
    }

    .header-right-actions {
        grid-area: actions;
    }

    .lang-text {
        display: none;
    }

    .btn-header-contact {
        max-width: 96px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobile final layout tuning */
@media (max-width: 768px) {
    .site-header {
        top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        height: auto !important;
        min-height: 92px !important;
        transform: none !important;
        border-radius: 18px !important;
        border: 1px solid rgba(148, 163, 184, 0.16) !important;
        background: rgba(0, 3, 10, 0.96) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
        overflow: visible !important;
    }

    .site-header .header-container {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "gamer lang"
            "bench contact" !important;
        height: 100% !important;
        width: 100% !important;
        padding: 8px !important;
        gap: 8px !important;
        justify-items: center !important;
        align-items: center !important;
    }

    .site-header .logo {
        display: none !important;
    }

    .site-header .header-tabs {
        display: contents !important;
    }

    .site-header .header-right-actions {
        display: contents !important;
    }

    .site-header .lang-switcher {
        grid-area: lang !important;
        justify-self: stretch !important;
        align-self: center !important;
        width: 100% !important;
    }

    .site-header .btn-header-contact {
        grid-area: contact !important;
        justify-self: stretch !important;
        align-self: center !important;
    }

    .site-header .header-tab {
        flex: 1 1 0 !important;
        justify-content: center !important;
        min-width: 0 !important;
        width: 100% !important;
        height: 36px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.035) !important;
        border: 1px solid rgba(148, 163, 184, 0.14) !important;
    }

    .site-header #tab-gamer {
        grid-area: gamer !important;
        justify-self: stretch !important;
        align-self: center !important;
    }

    .site-header #tab-benchmarks {
        grid-area: bench !important;
        justify-self: stretch !important;
        align-self: center !important;
    }

    .site-header .header-tab.active {
        background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.22) !important;
    }

    .site-header .header-tab span {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .site-header .lang-btn {
        justify-content: center !important;
        width: 100% !important;
        height: 36px !important;
        padding: 0 10px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.035) !important;
        border-color: rgba(148, 163, 184, 0.14) !important;
    }

    .site-header .btn-header-contact {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 36px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
        max-width: none !important;
        white-space: nowrap !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(148, 163, 184, 0.16) !important;
        box-shadow: none !important;
    }

    .hero-section {
        min-height: auto !important;
        padding-top: 138px !important;
        padding-bottom: 28px !important;
        align-items: flex-start !important;
    }

    .hero-container {
        padding: 0 10px !important;
        gap: 12px !important;
        margin-top: 0 !important;
    }

    .hero-intro {
        margin-top: 10px !important;
        margin-bottom: 2px !important;
    }

    .fps-card {
        padding-bottom: 18px !important;
    }

    .game-display-tabs {
        gap: 3px !important;
        padding: 3px !important;
    }

    .display-tab {
        font-size: 10px !important;
        padding: 6px 7px !important;
        gap: 4px !important;
        letter-spacing: 0.01em !important;
    }

    .display-tab i {
        font-size: 10px !important;
    }

    .game-display {
        min-height: 350px !important;
        height: auto !important;
        margin-top: 2vh !important;
    }

    .game-overlay {
        min-height: 350px !important;
        padding: 12px !important;
    }

    #game-bg {
        height: 38% !important;
        min-height: 128px !important;
        max-height: 180px !important;
        object-fit: cover !important;
        object-position: center top !important;
        opacity: 0.72 !important;
    }

    .game-overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 1, 4, 0.08) 0%, rgba(0, 1, 4, 0.92) 42%, rgba(0, 1, 4, 0.98) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .game-overlay > * {
        position: relative;
        z-index: 1;
    }

    .game-card-top {
        max-width: 100%;
    }

    #game-title {
        font-size: 16px !important;
        line-height: 1.15 !important;
    }

    .preset-bars-container {
        gap: 9px !important;
        padding: 11px 12px !important;
    }

    .preset-bar-row {
        gap: 8px !important;
    }

    .preset-bar-label {
        width: 48px !important;
        font-size: 9px !important;
    }

    .preset-bar-track {
        height: 8px !important;
    }

    .preset-bar-value {
        font-size: 10px !important;
    }

    .requirements-table {
        overflow-x: hidden !important;
        padding: 3px !important;
        gap: 5px !important;
    }

    .requirements-table .req-row {
        min-width: 0 !important;
        grid-template-columns: minmax(48px, 0.64fr) minmax(82px, 1fr) minmax(70px, 0.86fr) !important;
        padding: 7px 6px !important;
        gap: 0 !important;
        font-size: 10px !important;
    }

    .requirements-table .req-row.req-header {
        padding: 6px !important;
        font-size: 9px !important;
        letter-spacing: 0 !important;
    }

    .requirements-table .req-row.req-header > div:nth-child(1) {
        font-size: 0 !important;
    }

    .requirements-table .req-row.req-header > div:nth-child(1)::after {
        content: 'HW';
        font-size: 9px;
    }

    .requirements-table .req-row.req-header > div:nth-child(2) {
        font-size: 0 !important;
    }

    .requirements-table .req-row.req-header > div:nth-child(2)::after {
        content: 'REC';
        font-size: 9px;
    }

    .requirements-table .req-row.req-header > div:nth-child(3) {
        font-size: 0 !important;
    }

    .requirements-table .req-row.req-header > div:nth-child(3)::after {
        content: 'MIN';
        font-size: 9px;
    }

    .requirements-table .req-row > div:not(:last-child) {
        padding-right: 4px !important;
    }

    .requirements-table .req-row > div:not(:first-child) {
        padding-left: 4px !important;
    }

    .req-label {
        gap: 4px !important;
        min-width: 0 !important;
    }

    .req-label i {
        display: none !important;
    }

    .req-val {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        line-height: 1.15 !important;
        padding-right: 0 !important;
    }
}
