        :root {

            --accent-glow: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.3);
            --accent-border: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.25);
            --accent-bg: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.08);
            --accent-bg-subtle: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.02);
            --bg-color: #050505;
            --card-bg: #0f0f0f;
            --card-border: #27272a;
            --text-main: #ffffff;
            --text-muted: #a1a1aa;
            --grid-line: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.06);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
  font-family: 'Unbounded', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--grid-line) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: -3;
        }

        .client-name {
  font-family: 'Unbounded', sans-serif;
}

        .bg-gradient-1 {
            position: fixed;
            top: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, var(--accent-bg) 0%, transparent 50%);
            pointer-events: none;
            z-index: -2;
        }

        .bg-gradient-2 {
            position: fixed;
            bottom: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.04) 0%, transparent 50%);
            pointer-events: none;
            z-index: -2;
        }

        .bg-gradient-3 {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.02) 0%, transparent 60%);
            pointer-events: none;
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
            pointer-events: none;
            z-index: -1;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(5, 5, 5, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .logo:hover .logo-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-main);
            transform: scale(1.05);
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 5px;
        }

        .lang-btn {
            padding: 6px 12px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 0.85rem;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .lang-btn:hover {
            color: var(--text-main);
            transform: scale(1.08);
        }

        .lang-btn.active {
            background: var(--accent-color);
            color: #000;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--card-border);
        }

        .nav-left,
.nav-left:hover,
.nav-left:focus,
.nav-left:active,
.nav-left:visited {
    text-decoration: none;
    color: inherit;
}

.nav-left {
    cursor: pointer;
    display: flex;
    align-items: center;
}


        .btn-ghost:hover {
            border-color: var(--accent-border);
            transform: scale(1.05);
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: #1a1a1a;
            border: none;
            font-family: 'Unbounded', sans-serif;
            font-weight: 500;
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: scale(1.05);
        }

        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding-top: 60px;
        }

        .badge {
            background: var(--accent-bg);
            color: var(--accent-color);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid var(--accent-border);
            font-size: 0.85rem;
            margin-bottom: 25px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: default;
            transition: transform 0.3s ease;
        }

        .badge:hover {
            transform: scale(1.05);
        }

        h1 {
            font-family: 'Unbounded', sans-serif;
            font-weight: 700;
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #ffffff;
            max-width: 900px;
        }

        h2 {
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
        }

        h4 {
            font-family: 'Unbounded', sans-serif;
            font-weight: 500;
        }

        .subtitle {
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto 100px auto;
            padding: 0 20px;
        }

        .section-header {
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .section-header p {
            color: var(--text-muted);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(15, 15, 15, 0.8);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .card:hover {
            transform: scale(1.02);
            border-color: var(--accent-border);
        }

        .chat-layout {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }
        
        .chat-layout::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--card-border) 20%, var(--card-border) 80%, transparent);
        }

        .chat-message {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--card-border);
            position: relative;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .chat-message:hover {
            transform: scale(1.02);
            background: rgba(255,255,255,0.04);
        }

        .chat-message::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 50%;
            width: 10px;
            height: 1px;
            background: var(--card-border);
        }

        .user-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-color);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .chat-message:hover .user-icon {
            transform: scale(1.1);
        }
        
        .user-icon.support {
            background: #333;
            color: #fff;
        }

        .msg-content h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .msg-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .modules-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .feature-client-visual {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 42% 50%;
            border-radius: 12px;
        }

        .character-wireframe {
            height: 300px;
            border: 1px dashed var(--accent-color);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            opacity: 0.9;
            position: relative;
            perspective: 1000px;
            overflow: hidden;
            background: var(--accent-bg-subtle);
            transition: border-style 0.3s ease, transform 0.3s ease;
        }

        .character-wireframe:hover {
            border-style: solid;
            transform: scale(1.02);
        }

        .minecraft-skin {
            position: relative;
            width: 80px;
            height: 160px;
            transform-style: preserve-3d;
            transition: none;
        }

        .minecraft-skin.is-3d {
            animation: rotate3d 8s linear infinite;
        }

        .minecraft-skin.is-running {
            animation: rotate3d 8s linear infinite;
        }

        @keyframes rotate3d {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        .skin-part {
            position: absolute;
            box-sizing: border-box;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .face {
            position: absolute;
            border: none;
            background: var(--accent-bg);
            border-radius: 2px;
            box-sizing: border-box;
            display: none;
        }
        
        .skin-part:not(.is-3d) {
            border: 2px solid var(--accent-color);
            background: var(--accent-bg);
            border-radius: 4px;
        }

        .is-3d .face {
            display: block;
        }
        
        .is-3d.skin-part {
            border: none !important;
            background: transparent !important;
        }

        .skin-head {
            width: 40px;
            height: 40px;
            top: 0;
            left: 50%;
            margin-left: -20px;
            z-index: 5;
            transform-origin: center bottom;
        }

        .skin-crosshair {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .skin-crosshair.active {
            opacity: 1;
        }

        .crosshair-line {
            position: absolute;
            background: var(--accent-color);
            box-shadow: 0 0 8px var(--accent-color), 0 0 16px var(--accent-color);
        }

        .crosshair-line.horizontal {
            width: 100%;
            height: 2px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .crosshair-line.vertical {
            width: 2px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .crosshair-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 8px var(--accent-color), 0 0 16px var(--accent-color);
            animation: crosshairPulse 1.5s ease-in-out infinite;
        }

        @keyframes crosshairPulse {
            0%, 100% { box-shadow: 0 0 8px var(--accent-color), 0 0 16px var(--accent-color); }
            50% { box-shadow: 0 0 12px var(--accent-color), 0 0 24px var(--accent-color), 0 0 36px var(--accent-color); }
        }

        .skin-crosshair-3d {
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateZ(21px);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .skin-crosshair-3d.active {
            opacity: 1;
        }

        .skin-head.head-fall {
            animation: headFallAndRecover 3s ease-in-out infinite;
        }

        @keyframes headFallAndRecover {
            0% { transform: translateY(0) rotateZ(0deg); }
            15% { transform: translateY(60px) rotateZ(90deg); }
            30% { transform: translateY(120px) rotateZ(180deg); }
            50% { transform: translateY(120px) rotateZ(180deg); }
            65% { transform: translateY(60px) rotateZ(90deg); }
            80% { transform: translateY(0) rotateZ(0deg); }
            100% { transform: translateY(0) rotateZ(0deg); }
        }

        .skin-head .face.front, .skin-head .face.back { width: 40px; height: 40px; }
        .skin-head .face.left, .skin-head .face.right { width: 40px; height: 40px; }
        .skin-head .face.top, .skin-head .face.bottom { width: 40px; height: 40px; }
        .skin-head .face.front { transform: translateZ(20px); }
        .skin-head .face.back { transform: rotateY(180deg) translateZ(20px); }
        .skin-head .face.left { transform: rotateY(-90deg) translateZ(20px); }
        .skin-head .face.right { transform: rotateY(90deg) translateZ(20px); }
        .skin-head .face.top { transform: rotateX(90deg) translateZ(20px); }
        .skin-head .face.bottom { transform: rotateX(-90deg) translateZ(20px); }

        .skin-body {
            width: 40px;
            height: 60px;
            top: 42px;
            left: 50%;
            margin-left: -20px;
        }

        .skin-body .face.front, .skin-body .face.back { width: 40px; height: 60px; }
        .skin-body .face.left, .skin-body .face.right { width: 20px; height: 60px; }
        .skin-body .face.top, .skin-body .face.bottom { width: 40px; height: 20px; }
        .skin-body .face.front { transform: translateZ(10px); }
        .skin-body .face.back { transform: rotateY(180deg) translateZ(10px); }
        .skin-body .face.left { transform: rotateY(-90deg) translateZ(10px); left: 10px; }
        .skin-body .face.right { transform: rotateY(90deg) translateZ(10px); right: 10px; }
        .skin-body .face.top { transform: rotateX(90deg) translateZ(10px); top: -10px; }
        .skin-body .face.bottom { transform: rotateX(-90deg) translateZ(50px); top: 0px; }

        .skin-arm {
            width: 20px;
            height: 60px;
            top: 42px;
            transform-origin: center top;
        }

        .skin-arm.left { left: 0px; }
        .skin-arm.right { right: 0px; }
        .skin-arm.left.running { animation: armSwingLeft 0.4s ease-in-out infinite; }
        .skin-arm.right.running { animation: armSwingRight 0.4s ease-in-out infinite; }

        @keyframes armSwingLeft {
            0%, 100% { transform: rotateX(-45deg); }
            50% { transform: rotateX(45deg); }
        }

        @keyframes armSwingRight {
            0%, 100% { transform: rotateX(45deg); }
            50% { transform: rotateX(-45deg); }
        }

        .skin-arm .face.front, .skin-arm .face.back { width: 20px; height: 60px; }
        .skin-arm .face.left, .skin-arm .face.right { width: 20px; height: 60px; }
        .skin-arm .face.top, .skin-arm .face.bottom { width: 20px; height: 20px; }
        .skin-arm .face.front { transform: translateZ(10px); }
        .skin-arm .face.back { transform: rotateY(180deg) translateZ(10px); }
        .skin-arm .face.left { transform: rotateY(-90deg) translateZ(10px); }
        .skin-arm .face.right { transform: rotateY(90deg) translateZ(10px); }
        .skin-arm .face.top { transform: rotateX(90deg) translateZ(10px); top: -10px; }
        .skin-arm .face.bottom { transform: rotateX(-90deg) translateZ(50px); top: 0px; }

        .skin-leg {
            width: 20px;
            height: 60px;
            top: 104px;
            transform-origin: center top;
        }

        .skin-leg.left { left: 50%; margin-left: -20px; }
        .skin-leg.right { left: 50%; margin-left: 0px; }
        .skin-leg.left.running { animation: legSwingLeft 0.4s ease-in-out infinite; }
        .skin-leg.right.running { animation: legSwingRight 0.4s ease-in-out infinite; }

        @keyframes legSwingLeft {
            0%, 100% { transform: rotateX(45deg); }
            50% { transform: rotateX(-45deg); }
        }

        @keyframes legSwingRight {
            0%, 100% { transform: rotateX(-45deg); }
            50% { transform: rotateX(45deg); }
        }

        .skin-leg .face.front, .skin-leg .face.back { width: 20px; height: 60px; }
        .skin-leg .face.left, .skin-leg .face.right { width: 20px; height: 60px; }
        .skin-leg .face.top, .skin-leg .face.bottom { width: 20px; height: 20px; }
        .skin-leg .face.front { transform: translateZ(10px); }
        .skin-leg .face.back { transform: rotateY(180deg) translateZ(10px); }
        .skin-leg .face.left { transform: rotateY(-90deg) translateZ(10px); }
        .skin-leg .face.right { transform: rotateY(90deg) translateZ(10px); }
        .skin-leg .face.top { transform: rotateX(90deg) translateZ(10px); top: -10px; }
        .skin-leg .face.bottom { transform: rotateX(-90deg) translateZ(50px); top: 0px; }

        .hitbox-outline {
            position: absolute;
            width: 140px;
            height: 240px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transform-style: preserve-3d;
            pointer-events: none;
            opacity: 0;
            transition: none;
        }

        .hitbox-outline.visible {
            opacity: 1;
            animation: hitboxRotate 8s linear infinite;
        }

        @keyframes hitboxRotate {
            0% { transform: translate(-50%, -50%) rotateY(0deg); }
            100% { transform: translate(-50%, -50%) rotateY(360deg); }
        }

        .hitbox-face {
            position: absolute;
            border: 2px solid var(--accent-color);
            background: transparent;
            border-radius: 8px;
            opacity: 0.5;
        }

        .hitbox-face.front { width: 140px; height: 240px; transform: translateZ(70px); }
        .hitbox-face.back { width: 140px; height: 240px; transform: translateZ(-70px); }
        .hitbox-face.left { width: 140px; height: 240px; left: -70px; transform: rotateY(-90deg) translateZ(0px); }
        .hitbox-face.right { width: 140px; height: 240px; right: -70px; transform: rotateY(90deg) translateZ(0px); }
        .hitbox-face.top { width: 140px; height: 140px; top: -70px; left: 0; transform: rotateX(90deg) translateZ(0px); }
        .hitbox-face.bottom { width: 140px; height: 140px; bottom: -70px; left: 0; transform: rotateX(-90deg) translateZ(0px); }

        .module-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-top: 1px solid var(--card-border);
            transition: transform 0.3s ease, background 0.3s ease;
            border-radius: 8px;
        }

        .module-item:hover {
            transform: scale(1.03);
            background: rgba(255,255,255,0.02);
        }

        .module-info {
            display: flex;
            gap: 15px;
        }

        .module-info i {
            color: var(--text-muted);
            margin-top: 3px;
            transition: color 0.3s ease;
        }

        .module-item:hover .module-info i {
            color: var(--accent-color);
        }
        
        .module-text h4 { 
            font-size: 0.9rem; 
            transition: color 0.3s ease;
        }

        .module-item:hover .module-text h4 {
            color: var(--accent-color);
        }

        .module-text p { 
            font-size: 0.7rem; 
            color: var(--text-muted); 
            max-width: 150px; 
        }

        .toggle {
            width: 40px;
            height: 22px;
            background: #333;
            border-radius: 20px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle:hover {
            transform: scale(1.1);
        }

        .toggle::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .toggle.active { 
            background: var(--accent-color);
            box-shadow: 0 0 15px rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.5);
        }

        .toggle.active::after { left: 21px; }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            margin: 40px 0;
            opacity: 0.4;
        }

        .deco-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 50%;
        }

        .info-section {
            margin-top: 20px;
        }

        .info-block {
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 12px;
            margin-left: -15px;
            margin-right: -15px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .info-block:hover {
            background: rgba(255,255,255,0.015);
            transform: scale(1.02);
        }

        .info-block h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .info-block h4 i {
            color: var(--accent-color);
            width: 20px;
            text-align: center;
            font-size: 1rem;
        }

        .info-block p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .stats-row {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border: 1px solid var(--card-border);
            transition: transform 0.3s ease;
            cursor: default;
        }

        .stat-item:hover {
            transform: scale(1.08);
        }

        .stat-item i {
            color: var(--accent-color);
            font-size: 0.85rem;
        }

        .stat-item span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .stat-item strong {
            color: var(--text-main);
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
        }

        .screenshots-section {
            margin-top: 80px;
        }

        .screenshots-section-primary {
            margin-top: 0;
        }

        .screenshots-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .screenshots-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .screenshots-header p {
            color: var(--text-muted);
        }

        .screenshot-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .slider-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            background: var(--card-bg);
            aspect-ratio: 16/9;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider-slide {
            min-width: 100%;
            height: 100%;
        }

        .slider-slide img,
        .slider-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: block;
        }

        .slider-slide img:hover,
        .slider-slide video:hover {
            transform: scale(1.03);
        }

        .slider-slide img.gallery-gif,
        .slider-slide video.gallery-video,
        .slider-slide img.gallery-contain {
            object-fit: contain;
            background: #050505;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 15px 18px;
            border-radius: 12px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-nav:hover {
            background: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.3);
            border-color: var(--accent-border);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev { left: 20px; }
        .slider-next { right: 20px; }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            padding: 0;
            appearance: none;
            border-radius: 50%;
            background: var(--card-border);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dot:hover {
            background: var(--text-muted);
            transform: scale(1.2);
        }

        .slider-dot.active {
            background: var(--accent-color);
            transform: scale(1.2);
        }

        .slider-dot:focus-visible {
            outline: 2px solid var(--accent-color);
            outline-offset: 3px;
        }

        .slider-counter {
            text-align: center;
            margin-top: 15px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .slider-counter span {
            color: var(--accent-color);
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
        }

        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-media {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: min(900px, 80vw);
            min-height: min(506px, 70vh);
        }

        .lightbox-content img,
        .lightbox-content video {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 12px;
            border: 1px solid var(--card-border);
            background: #050505;
            display: block;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--accent-color);
            transform: scale(1.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--card-border);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 15px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev { left: -80px; }
        .lightbox-next { right: -80px; }

        .lightbox-counter {
            text-align: center;
            margin-top: 15px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

.modal {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

        .modal-overlay.active .modal {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            color: var(--text-muted);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .modal h2 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            color: var(--text-main);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        .form-input:focus {
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.1);
        }

        .btn-modal {
            width: 100%;
            padding: 14px;
            margin-top: 10px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.95rem;
            background: var(--accent-color);
            color: #000;
            border: none;
            font-family: 'Unbounded', sans-serif;
            transition: all 0.3s ease;
        }

        .btn-modal:hover {
            background: var(--accent-hover);
            transform: scale(1.02);
            box-shadow: 0 10px 30px -10px rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.5);
        }

        .modal-footer {
            text-align: center;
            margin-top: 25px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .modal-footer a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        /* Footer Styles */
        footer {
            background: rgba(10, 10, 10, 0.9);
            border-top: 1px solid var(--card-border);
            padding: 60px 50px 30px;
            margin-top: 100px;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
        }

        .footer-logo img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            border-radius: 8px;
        }

        .footer-description {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: #000;
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1rem;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.8rem;
            width: 16px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 25px;
            border-top: 1px solid var(--card-border);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-copyright span {
            color: var(--accent-color);
            font-family: 'Unbounded', sans-serif;
        }

        .support-chat-button {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 58px;
            height: 58px;
            border-radius: 18px;
            border: 1px solid rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.45);
            background: var(--accent-color);
            color: #080808;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            cursor: pointer;
            z-index: 300;
            box-shadow: 0 18px 50px rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.28);
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .support-chat-button:hover {
            transform: translateY(-2px) scale(1.03);
            filter: brightness(1.06);
        }

        .support-chat-panel {
            position: fixed;
            right: 24px;
            bottom: 94px;
            width: min(390px, calc(100vw - 32px));
            height: min(620px, calc(100vh - 132px));
            background: rgba(12, 12, 12, 0.96);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            z-index: 301;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(18px);
        }

        .support-chat-panel[hidden] {
            display: none;
        }

        .support-chat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px;
            border-bottom: 1px solid var(--card-border);
            background: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.08);
        }

        .support-chat-header strong {
            display: block;
            font-size: 0.95rem;
        }

        .support-chat-header span {
            display: block;
            margin-top: 4px;
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .support-chat-icon-btn,
        .support-chat-form button {
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .support-chat-icon-btn {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.06);
        }

        .support-chat-body {
            min-height: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 14px;
            overflow: hidden;
        }

        .support-chat-intro {
            display: grid;
            gap: 10px;
        }

        .support-chat-intro p {
            color: var(--text-muted);
            font-size: 0.78rem;
            line-height: 1.5;
        }

        .support-human-btn {
            width: 100%;
            border: 1px solid rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.35);
            border-radius: 8px;
            padding: 11px 12px;
            color: #050505;
            background: var(--accent-color);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .support-faq-list {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 3px;
        }

        .support-faq-chip {
            flex: 0 0 auto;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 8px 10px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            cursor: pointer;
            font-size: 0.72rem;
            white-space: nowrap;
        }

        .support-chat-messages {
            min-height: 180px;
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-right: 4px;
        }

        .support-message {
            display: flex;
            flex-direction: column;
            gap: 4px;
            max-width: 86%;
        }

        .support-message.visitor {
            align-self: flex-end;
            text-align: right;
        }

        .support-message.admin,
        .support-message.system {
            align-self: flex-start;
        }

        .support-message-label {
            color: var(--text-muted);
            font-size: 0.66rem;
        }

        .support-message-bubble {
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 0.78rem;
            line-height: 1.45;
            overflow-wrap: anywhere;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--card-border);
        }

        .support-message.visitor .support-message-bubble {
            background: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.18);
            border-color: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.36);
        }

        .support-chat-form {
            display: grid;
            grid-template-columns: 1fr 44px;
            gap: 8px;
            padding: 12px;
            border-top: 1px solid var(--card-border);
            background: rgba(0, 0, 0, 0.22);
        }

        .support-chat-form input {
            min-width: 0;
            height: 44px;
            border-radius: 8px;
            border: 1px solid var(--card-border);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            padding: 0 12px;
            outline: none;
            font-size: 0.82rem;
        }

        .support-chat-form input:focus {
            border-color: var(--accent-color);
        }

        .support-chat-form button {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--accent-color);
            color: #050505;
        }

        .support-chat-form button:disabled {
            opacity: 0.55;
            cursor: wait;
        }

        .support-chat-actions {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 0 12px 12px;
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        .support-chat-actions button {
            border: none;
            background: transparent;
            color: var(--accent-color);
            cursor: pointer;
            font-size: 0.72rem;
        }

        @media (max-width: 1200px) {
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .bento-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            nav { padding: 20px; }
            .stats-row { flex-direction: column; }
            .slider-nav { padding: 10px 14px; font-size: 1rem; }
            .slider-prev { left: 10px; }
            .slider-next { right: 10px; }
            .lightbox-media {
                min-width: min(100%, 88vw);
                min-height: auto;
            }
            .nav-right { gap: 15px; }
            .auth-buttons { display: none; }
            .modal-overlay {
                align-items: flex-start;
                overflow-y: auto;
                padding: 20px 0;
            }
            .modal { margin: 0 20px 20px; padding: 25px; }
            footer { padding: 40px 20px 20px; }
            .footer-content { grid-template-columns: 1fr; gap: 30px; }
            .support-chat-button { right: 16px; bottom: 16px; }
            .support-chat-panel {
                right: 16px;
                bottom: 84px;
                height: min(590px, calc(100vh - 104px));
            }
        }

/* Support center */
#supportChatRoot {
    font-family: 'Inter', sans-serif;
}

.modal-overlay.active ~ #supportChatRoot {
    visibility: hidden;
    pointer-events: none;
}

#supportChatRoot * {
    font-family: inherit;
    letter-spacing: 0;
}

#supportChatRoot button,
#supportChatRoot input {
    font-family: inherit;
}

#supportChatRoot .fa-solid,
#supportChatRoot .fa-regular {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
}

body.support-chat-open {
    overflow-x: hidden;
    overflow-y: auto;
}

#supportChatRoot [hidden] {
    display: none !important;
}

.support-chat-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 63, 70, 0.72);
    border-radius: 18px;
    background: #ff3038;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 18px 48px rgba(255, 48, 56, 0.28);
    transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.support-chat-button:hover {
    transform: translateY(-2px);
    background: #ff454c;
    filter: none;
}

.support-chat-button:focus-visible,
.support-chat-panel button:focus-visible,
.support-chat-panel input:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.support-chat-unread-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 15px;
    height: 15px;
    border: 3px solid #08090b;
    border-radius: 50%;
    background: #ffffff;
    display: none;
}

#supportChatRoot.has-unread .support-chat-unread-dot {
    display: block;
}

body.support-chat-open .support-chat-button {
    opacity: 0;
    pointer-events: none;
}

.support-chat-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2001;
    background: rgba(3, 4, 6, 0.82);
    backdrop-filter: blur(10px);
}

.support-chat-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(880px, calc(100vw - 48px));
    height: min(1332px, calc(100vh - 48px));
    max-height: none;
    background: #0b0c0f;
    border: 1px solid rgba(255, 57, 63, 0.6);
    border-radius: 30px;
    color: #f5f5f6;
    z-index: 2002;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.72);
    backdrop-filter: none;
}

.support-chat-header {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 38px 40px 24px 44px;
    border-bottom: 0;
    background: #0b0c0f;
}

.support-chat-title-row {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-chat-header h2 {
    margin: 0;
    color: #f8f8f9;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.support-chat-status-line {
    margin-top: 12px;
    color: #9a9a9f;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.3;
}

.support-chat-status-dot {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3b42;
    box-shadow: 0 0 18px rgba(255, 59, 66, 0.52);
}

.support-chat-icon-btn {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: #f1f1f3;
    background: #242124;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease;
}

.support-chat-icon-btn:hover {
    color: #ffffff;
    background: #302b2f;
}

.support-chat-back {
    width: 46px;
    height: 46px;
    margin-top: 1px;
    border-radius: 12px;
    font-size: 18px;
}

.support-chat-body {
    min-height: 0;
    flex: 1 1 auto;
    display: block;
    padding: 0 40px 20px 44px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: #3b3b3f transparent;
    scrollbar-width: thin;
}

.support-chat-body::-webkit-scrollbar,
.support-faq-grid::-webkit-scrollbar,
.support-chat-messages::-webkit-scrollbar {
    width: 7px;
}

.support-chat-body::-webkit-scrollbar-thumb,
.support-faq-grid::-webkit-scrollbar-thumb,
.support-chat-messages::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #3b3b3f;
}

.support-chat-home {
    min-height: 100%;
}

.support-chat-hero {
    position: relative;
    min-height: 170px;
    display: flex;
    align-items: flex-start;
}

.support-chat-hero p {
    width: 58%;
    margin: 18px 0 0;
    color: #9b9ba1;
    font-size: 21px;
    line-height: 1.75;
    font-weight: 400;
}

.support-chat-hero img {
    position: absolute;
    top: -70px;
    right: -20px;
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 0;
    pointer-events: none;
    user-select: none;
}

.support-search-field {
    width: 100%;
    height: 76px;
    border: 1px solid #4a4a4f;
    border-radius: 18px;
    background: #0e0f12;
    color: #7f7f85;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 26px;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.support-search-field:focus-within {
    border-color: #ff3b42;
    background: #111216;
}

.support-search-field > i {
    flex: 0 0 auto;
    font-size: 26px;
}

.support-search-field input {
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f2f2f4;
    font-size: 21px;
    line-height: 1;
}

.support-search-field input::placeholder {
    color: #68686e;
    opacity: 1;
}

.support-search-field input::-webkit-search-cancel-button {
    filter: invert(1);
}

.support-section-title {
    min-height: 34px;
    margin: 31px 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-section-title > i {
    color: #ff3940;
    font-size: 24px;
}

.support-section-title h3 {
    margin: 0;
    color: #f4f4f5;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.support-section-title span {
    margin-left: auto;
    color: #74747a;
    font-size: 14px;
}

.support-faq-grid {
    max-height: 548px;
    padding-right: 7px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: #3b3b3f transparent;
    scrollbar-width: thin;
}

.support-faq-card {
    width: 100%;
    min-width: 0;
    height: 126px;
    padding: 20px 26px;
    border: 1px solid rgba(255, 66, 72, 0.44);
    border-radius: 18px;
    background: #17181b;
    color: #f5f5f6;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.support-faq-card:hover,
.support-faq-card.selected {
    border-color: #ff4148;
    background: #1d1d20;
    transform: translateY(-1px);
}

.support-faq-card-icon {
    width: 58px;
    height: 58px;
    color: #ff3940;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.support-faq-card-title {
    min-width: 0;
    color: #f7f7f8;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.support-faq-card-arrow {
    color: #a8a8ad;
    justify-self: end;
    font-size: 22px;
}

.support-faq-empty {
    min-height: 126px;
    border: 1px solid #343438;
    border-radius: 18px;
    color: #929298;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    font-size: 17px;
    line-height: 1.5;
}

.support-faq-answer {
    margin-top: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 62, 68, 0.54);
    border-radius: 18px;
    background: #141518;
}

.support-faq-answer-topline {
    color: #ff4248;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.support-faq-answer-topline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.support-faq-answer-topline button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: #242529;
    color: #ffffff;
    cursor: pointer;
}

.support-faq-answer h3 {
    margin: 16px 0 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
}

.support-faq-answer p {
    margin: 0;
    color: #aaaab0;
    font-size: 16px;
    line-height: 1.65;
}

.support-faq-needs-human {
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #ff3d44;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.support-response-note {
    min-height: 86px;
    margin-top: 24px;
    padding: 18px 24px;
    border: 1px solid #38383d;
    border-radius: 18px;
    background: #121316;
    display: flex;
    align-items: center;
    gap: 18px;
}

.support-response-note-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    color: #ff3c43;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.support-response-note div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.support-response-note strong,
.support-response-note span {
    color: #a5a5aa;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.support-existing-ticket {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    padding: 13px 18px;
    border: 1px solid #3f3f44;
    border-radius: 12px;
    background: #151619;
    color: #f3f3f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 15px;
    cursor: pointer;
}

.support-existing-ticket span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.support-human-btn {
    width: 100%;
    min-height: 92px;
    margin-top: 20px;
    padding: 18px 28px;
    border: 1px solid #ff4a50;
    border-radius: 18px;
    background: #f62f37;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}

.support-human-btn:hover {
    background: #ff4249;
    transform: translateY(-1px);
}

.support-human-btn i {
    font-size: 30px;
}

.support-chat-conversation {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-conversation-intro {
    padding: 18px 20px;
    border: 1px solid #35353a;
    border-radius: 14px;
    background: #131417;
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-conversation-intro-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ff343c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.support-conversation-intro div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.support-conversation-intro strong {
    font-size: 18px;
}

.support-conversation-intro span {
    color: #9c9ca2;
    font-size: 14px;
    line-height: 1.45;
}

.support-chat-suggestion {
    position: relative;
    padding: 18px 56px 18px 20px;
    border: 1px solid rgba(255, 62, 68, 0.52);
    border-radius: 14px;
    background: #171518;
}

.support-chat-suggestion div {
    display: grid;
    gap: 7px;
}

.support-chat-suggestion span {
    color: #ff454c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.support-chat-suggestion strong {
    color: #ffffff;
    font-size: 17px;
}

.support-chat-suggestion p {
    margin: 0;
    color: #aaaab0;
    font-size: 14px;
    line-height: 1.55;
}

.support-chat-suggestion button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: #29262a;
    color: #ffffff;
    cursor: pointer;
}

.support-chat-messages {
    min-height: 260px;
    flex: 1 1 auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 8px 8px 0;
    scrollbar-color: #3b3b3f transparent;
    scrollbar-width: thin;
}

.support-conversation-empty {
    margin: auto;
    max-width: 460px;
    padding: 38px 28px;
    color: #99999f;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.support-conversation-empty-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 62, 68, 0.55);
    border-radius: 16px;
    background: #19191c;
    color: #ff4148;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.support-conversation-empty strong {
    color: #ffffff;
    font-size: 19px;
}

.support-conversation-empty > span:last-child {
    font-size: 14px;
    line-height: 1.55;
}

.support-message {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 78%;
}

.support-message.visitor {
    align-self: flex-end;
    text-align: right;
}

.support-message.admin,
.support-message.system {
    align-self: flex-start;
}

.support-message-label {
    color: #7e7e84;
    font-size: 12px;
}

.support-message-bubble {
    padding: 15px 17px;
    border: 1px solid #39393e;
    border-radius: 14px;
    background: #18191c;
    color: #f2f2f4;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.support-message.visitor .support-message-bubble {
    border-color: rgba(255, 62, 68, 0.62);
    background: #2a1518;
}

.support-message.system .support-message-bubble {
    color: #bebec3;
    background: #121316;
}

.support-chat-form {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 12px;
    padding: 18px 40px 18px 44px;
    border-top: 1px solid #29292e;
    background: #0b0c0f;
}

.support-chat-form input {
    min-width: 0;
    width: 100%;
    height: 62px;
    padding: 0 20px;
    border: 1px solid #3c3c41;
    border-radius: 14px;
    outline: 0;
    background: #151619;
    color: #ffffff;
    font-size: 15px;
}

.support-chat-form input:focus {
    border-color: #ff4148;
}

.support-chat-form input::placeholder {
    color: #717177;
}

.support-chat-form button {
    width: 62px;
    height: 62px;
    border: 1px solid #ff4a50;
    border-radius: 14px;
    background: #f62f37;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
}

.support-chat-form button:disabled {
    opacity: 0.55;
    cursor: wait;
}

.support-chat-footer {
    flex: 0 0 auto;
    padding: 12px 40px 25px 44px;
    background: #0b0c0f;
}

.support-chat-home-footer,
.support-chat-conversation-footer {
    min-height: 40px;
    color: #85858a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
}

.support-chat-home-footer strong {
    color: #8e8e93;
    font-size: 18px;
    font-weight: 500;
}

.support-chat-home-footer strong span {
    color: #ff3e45;
    font-weight: 800;
}

.support-chat-home-footer > span i {
    margin-left: 5px;
    color: #ff3038;
}

.support-chat-conversation-footer button {
    border: 0;
    background: transparent;
    color: #ff4249;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.support-chat-conversation-footer > span {
    font-size: 13px;
}

@media (max-height: 980px) and (min-width: 769px) {
    .support-chat-panel {
        height: calc(100vh - 28px);
    }

    .support-chat-header {
        padding-top: 24px;
        padding-bottom: 18px;
    }

    .support-chat-header h2 {
        font-size: 30px;
    }

    .support-chat-status-line {
        margin-top: 8px;
        font-size: 15px;
    }

    .support-chat-icon-btn {
        width: 52px;
        height: 52px;
    }

    .support-chat-hero {
        min-height: 126px;
    }

    .support-chat-hero p {
        margin-top: 8px;
        font-size: 17px;
        line-height: 1.6;
    }

    .support-chat-hero img {
        top: -64px;
        right: -12px;
        width: 280px;
        height: 280px;
    }

    .support-search-field {
        height: 62px;
    }

    .support-faq-grid {
        max-height: 308px;
        grid-auto-rows: 96px;
    }

    .support-faq-card {
        height: 96px;
        grid-template-columns: 48px minmax(0, 1fr) 18px;
        padding: 14px 20px;
    }

    .support-faq-card-icon {
        width: 46px;
        height: 46px;
        font-size: 31px;
    }

    .support-faq-card-title {
        font-size: 17px;
    }

    .support-response-note {
        min-height: 68px;
        margin-top: 16px;
        padding: 13px 18px;
    }

    .support-human-btn {
        min-height: 68px;
        margin-top: 14px;
        font-size: 23px;
    }

    .support-chat-footer {
        padding-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .support-chat-button {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 21px;
    }

    .support-chat-backdrop {
        background: rgba(3, 4, 6, 0.9);
        backdrop-filter: blur(6px);
    }

    .support-chat-panel {
        left: 6px;
        top: 6px;
        right: 6px;
        bottom: 6px;
        transform: none;
        width: auto;
        height: auto;
        max-height: none;
        border-radius: 18px;
    }

    .support-chat-header {
        align-items: flex-start;
        padding: 20px 18px 16px;
    }

    .support-chat-title-row {
        gap: 10px;
    }

    .support-chat-header h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .support-chat-status-line {
        margin-top: 7px;
        gap: 8px;
        font-size: 13px;
    }

    .support-chat-status-dot {
        width: 8px;
        height: 8px;
    }

    .support-chat-icon-btn {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 20px;
    }

    .support-chat-back {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .support-chat-body {
        padding: 0 16px 14px;
    }

    .support-chat-hero {
        min-height: 138px;
    }

    .support-chat-hero p {
        width: 69%;
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.55;
    }

    .support-chat-hero img {
        top: -34px;
        right: -26px;
        width: 210px;
        height: 210px;
    }

    .support-search-field {
        height: 54px;
        border-radius: 12px;
        gap: 13px;
        padding: 0 16px;
    }

    .support-search-field > i {
        font-size: 18px;
    }

    .support-search-field input {
        font-size: 15px;
    }

    .support-section-title {
        min-height: 28px;
        margin: 22px 0 13px;
        gap: 9px;
    }

    .support-section-title > i,
    .support-section-title h3 {
        font-size: 19px;
    }

    .support-section-title span {
        font-size: 12px;
    }

    .support-faq-grid {
        max-height: none;
        padding-right: 0;
        grid-template-columns: 1fr;
        grid-auto-rows: 82px;
        gap: 10px;
        overflow-y: visible;
    }

    .support-faq-card {
        height: 82px;
        padding: 13px 16px;
        border-radius: 12px;
        grid-template-columns: 42px minmax(0, 1fr) 16px;
        gap: 13px;
    }

    .support-faq-card-icon {
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .support-faq-card-title {
        font-size: 16px;
    }

    .support-faq-card-arrow {
        font-size: 16px;
    }

    .support-faq-answer,
    .support-response-note {
        border-radius: 12px;
    }

    .support-faq-answer {
        padding: 19px 18px;
    }

    .support-faq-answer h3 {
        font-size: 17px;
    }

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

    .support-response-note {
        min-height: 72px;
        margin-top: 16px;
        padding: 13px 15px;
        gap: 12px;
    }

    .support-response-note-icon {
        width: 36px;
        height: 36px;
        font-size: 25px;
    }

    .support-response-note strong,
    .support-response-note span {
        font-size: 12px;
    }

    .support-existing-ticket {
        margin-top: 14px;
        font-size: 13px;
    }

    .support-human-btn {
        min-height: 64px;
        margin-top: 14px;
        border-radius: 12px;
        gap: 13px;
        font-size: 20px;
    }

    .support-human-btn i {
        font-size: 21px;
    }

    .support-chat-footer {
        padding: 8px 16px 14px;
    }

    .support-chat-home-footer,
    .support-chat-conversation-footer {
        min-height: 34px;
        font-size: 12px;
    }

    .support-chat-home-footer strong {
        font-size: 14px;
    }

    .support-chat-conversation-footer button,
    .support-chat-conversation-footer > span {
        font-size: 11px;
    }

    .support-chat-form {
        grid-template-columns: minmax(0, 1fr) 52px;
        gap: 9px;
        padding: 12px 16px;
    }

    .support-chat-form input,
    .support-chat-form button {
        height: 52px;
        border-radius: 11px;
    }

    .support-chat-form input {
        padding: 0 14px;
        font-size: 13px;
    }

    .support-chat-form button {
        width: 52px;
        font-size: 18px;
    }

    .support-conversation-intro {
        padding: 14px;
        border-radius: 12px;
    }

    .support-conversation-intro-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .support-conversation-intro strong {
        font-size: 15px;
    }

    .support-conversation-intro span {
        font-size: 12px;
    }

    .support-message {
        max-width: 90%;
    }

    .support-message-bubble {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
    }
}

/* Compact floating support window. The site remains visible and interactive. */
.support-chat-backdrop {
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
}

.support-chat-panel {
    left: auto;
    top: auto;
    right: 24px;
    bottom: 104px;
    transform: none;
    width: min(520px, calc(100vw - 32px));
    height: min(700px, calc(100vh - 128px));
    max-height: 700px;
    border-radius: 20px;
    pointer-events: auto;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.72);
}

.support-chat-header {
    gap: 14px;
    padding: 20px 20px 14px;
}

.support-chat-title-row {
    gap: 10px;
}

.support-chat-header h2 {
    font-size: 22px;
    line-height: 1.2;
}

.support-chat-status-line {
    margin-top: 7px;
    gap: 8px;
    font-size: 13px;
}

.support-chat-status-dot {
    width: 8px;
    height: 8px;
}

.support-chat-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 19px;
}

.support-chat-back {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.support-chat-body {
    padding: 0 18px 14px;
}

.support-chat-hero {
    min-height: 96px;
}

.support-chat-hero p {
    width: 66%;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
}

.support-chat-hero img {
    top: -26px;
    right: -18px;
    width: 160px;
    height: 160px;
    -webkit-mask-image: radial-gradient(circle at center, #000 52%, transparent 82%);
    mask-image: radial-gradient(circle at center, #000 52%, transparent 82%);
}

.support-search-field {
    height: 52px;
    gap: 13px;
    padding: 0 16px;
    border-radius: 12px;
}

.support-search-field > i {
    font-size: 18px;
}

.support-search-field input {
    font-size: 15px;
}

#supportChatRoot #supportChatSearch {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    appearance: none;
}

#supportChatRoot #supportChatInput {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    outline: 0 !important;
    box-shadow: none !important;
}

.support-section-title {
    min-height: 28px;
    margin: 18px 0 12px;
    gap: 9px;
}

.support-section-title > i,
.support-section-title h3 {
    font-size: 18px;
}

.support-section-title span {
    font-size: 11px;
}

.support-faq-grid {
    max-height: 224px;
    padding-right: 5px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 72px;
    gap: 10px;
    overflow-y: auto;
}

.support-faq-card {
    height: 72px;
    padding: 11px 12px;
    border-radius: 12px;
    grid-template-columns: 34px minmax(0, 1fr) 13px;
    gap: 9px;
}

.support-faq-card-icon {
    width: 34px;
    height: 34px;
    font-size: 24px;
}

.support-faq-card-title {
    font-size: 14px;
    line-height: 1.3;
}

.support-faq-card-arrow {
    font-size: 13px;
}

.support-faq-empty {
    min-height: 90px;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
}

.support-faq-answer {
    margin-top: 12px;
    padding: 16px;
    border-radius: 12px;
}

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

.support-faq-answer h3 {
    margin: 12px 0 7px;
    font-size: 16px;
}

.support-faq-answer p {
    font-size: 13px;
    line-height: 1.55;
}

.support-faq-needs-human {
    margin-top: 13px;
    padding: 10px 12px;
    font-size: 13px;
}

.support-chat-home:has(.support-faq-answer:not([hidden])) .support-faq-grid {
    max-height: 150px;
}

.support-faq-answer:not([hidden]) ~ .support-response-note,
.support-faq-answer:not([hidden]) ~ .support-existing-ticket,
.support-faq-answer:not([hidden]) ~ .support-human-btn {
    display: none;
}

.support-response-note {
    min-height: 56px;
    margin-top: 13px;
    padding: 10px 13px;
    border-radius: 12px;
    gap: 10px;
}

.support-response-note-icon {
    width: 32px;
    height: 32px;
    font-size: 22px;
}

.support-response-note strong,
.support-response-note span {
    font-size: 12px;
    line-height: 1.35;
}

.support-existing-ticket {
    min-height: 46px;
    margin-top: 11px;
    padding: 10px 12px;
    font-size: 12px;
}

.support-human-btn {
    min-height: 52px;
    margin-top: 12px;
    padding: 13px 18px;
    border-radius: 12px;
    gap: 11px;
    font-size: 18px;
}

.support-human-btn i {
    font-size: 19px;
}

.support-chat-conversation {
    gap: 12px;
}

.support-conversation-intro {
    padding: 13px 14px;
    border-radius: 12px;
    gap: 11px;
}

.support-conversation-intro-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
}

.support-conversation-intro strong {
    font-size: 15px;
}

.support-conversation-intro span {
    font-size: 12px;
}

.support-chat-suggestion {
    padding: 14px 46px 14px 14px;
    border-radius: 12px;
}

.support-chat-suggestion strong {
    font-size: 14px;
}

.support-chat-suggestion p {
    font-size: 12px;
}

.support-chat-messages {
    min-height: 180px;
    gap: 11px;
}

.support-message-bubble {
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 13px;
}

.support-chat-form {
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 9px;
    padding: 12px 18px;
}

.support-chat-form input,
.support-chat-form button {
    height: 50px;
    border-radius: 11px;
}

.support-chat-form input {
    padding: 0 14px;
    font-size: 13px;
}

.support-chat-form button {
    width: 50px;
    font-size: 18px;
}

.support-chat-footer {
    margin: 0;
    padding: 8px 18px 12px;
    border-top: 1px solid #22242a;
}

.support-chat-home-footer,
.support-chat-conversation-footer {
    min-height: 30px;
    gap: 12px;
    font-size: 12px;
}

.support-chat-home-footer strong {
    font-size: 14px;
}

.support-chat-conversation-footer button,
.support-chat-conversation-footer > span {
    font-size: 11px;
}

@media (max-width: 600px) {
    .support-chat-panel {
        left: auto;
        top: auto;
        right: 10px;
        bottom: 84px;
        width: min(460px, calc(100vw - 24px));
        height: min(620px, calc(100vh - 108px));
        max-height: 620px;
        border-radius: 18px;
    }

    .support-chat-header {
        padding: 17px 16px 12px;
    }

    .support-chat-body {
        padding: 0 14px 12px;
    }

    .support-chat-hero {
        min-height: 96px;
    }

    .support-chat-hero p {
        width: 68%;
        font-size: 13px;
    }

    .support-chat-hero img {
        top: -22px;
        right: -20px;
        width: 150px;
        height: 150px;
    }

    .support-faq-grid {
        max-height: 218px;
        grid-template-columns: 1fr;
        grid-auto-rows: 68px;
        overflow-y: auto;
    }

    .support-faq-card {
        height: 68px;
    }
}
