:root {
    /* Полностью новые, более глубокие и "киберпанковые" цвета */
    --bg-color: #050508;
    --bg-secondary: #0a0b12;
    --bg-card: rgba(15, 17, 26, 0.7);

    --accent-color: #ffd700;
    /* Более сложный оранжево-желтый */
    --accent-hover: #ffb740;
    --accent-glow: rgba(255, 215, 0, 0.3);

    --text-main: #ffffff;
    --text-muted: #8b92a5;

    --border-color: rgba(255, 255, 255, 0.08);

    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: #05060a;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Яркие, агрессивные холодные свечения (Кибер-стиль) */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 150, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 100, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% -20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Эффект диагональных линий (Diagonal Stripes) - агрессивный дизайн */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.015),
            rgba(255, 255, 255, 0.015) 2px,
            transparent 2px,
            transparent 10px);
    mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */
.header {
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo span span {
    color: var(--accent-color);
}

.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

.nav a.active {
    position: relative;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: var(--accent-color);
    box-shadow: 0 -3px 15px var(--accent-glow);
    border-radius: 4px 4px 0 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #ff7b00);
    color: #000;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), #ff8c00);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary-glass {
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-glass:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-login {
    padding: 12px 28px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-login:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* HERO SECTION - NEW LAYOUT */
.hero {
    padding: 120px 0 0 0;
    /* Bottom padding 0 */
    overflow: visible;
    /* Prevent cut-off */
    position: relative;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding-bottom: 0px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
    transform: translateY(-130px);
    /* Золотая середина высоты */
    margin-left: 60px;
    /* Сдвиг вправо */
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-color);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}


.hero-title {
    font-size: 5.5rem;
    /* Сделал заголовок крупнее */
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.glitch-effect {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px var(--accent-glow);
}


.hero-subtitle {
    font-size: 1.25rem;
    /* Сделал подзаголовок крупнее */
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 580px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* HERO IMAGE & COMPLETELY NEW BACKGROUND */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Опускаем на дно коробки */
    height: 650px;
}

.ambient-glow {
    display: none;
    /* ПОЛНОСТЬЮ УБРАЛИ СВЕЧЕНИЯ ПО ТРЕБОВАНИЮ ПРЕДЫДУЩЕГО СООБЩЕНИЯ */
}

.tech-grid {
    position: absolute;
    width: 150%;
    height: 150%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(800px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    z-index: 0;
    opacity: 0.6;
}

.hero-character {
    position: relative;
    z-index: 10;
    max-width: 135%;
    /* Чуть меньше */
    max-height: 125%;
    /* Чуть меньше */
    object-fit: contain;
    mix-blend-mode: screen;
    /* Убирает черный фон картинки */
    transform-origin: center bottom;
    margin-bottom: 0px;
    /* Убрал отрицательный маржин, чтобы ноги не проваливались под линию */
}

.floating {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* НОВЫЙ РАЗДЕЛИТЕЛЬ */
.neon-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 0 0 60px 0;
    /* 0 сверху = линия прикасается к низу секции */
    position: relative;
    z-index: 5;
}

/* FEATURES SECTION - ГОРИЗОНТАЛЬНЫЕ КАРТОЧКИ ВМЕСТО СТКАНДАРТНОЙ СЕТКИ */
.features {
    padding: 60px 0 100px 0;
    background: transparent;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card.new-style {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s;
}

.feature-card.new-style:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6);
}

.feature-icon.glow {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.4s;
}

.feature-card.new-style:hover .feature-icon.glow {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 25px var(--accent-glow);
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* STATISTICS SECTION */
.statistics {
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.stats-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: linear-gradient(145deg, rgba(20, 22, 33, 0.6) 0%, rgba(10, 11, 18, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-box {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: transparent;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CATALOG GRID */
.catalog {
    padding: 80px 0 120px;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.catalog-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.full-catalog {
    padding-top: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
    opacity: 0.5;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.game-card {
    background: linear-gradient(145deg, rgba(20, 22, 33, 0.9) 0%, rgba(10, 11, 18, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    /* Толщина рамки */
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 10;
}

.game-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
}

.game-card:hover::before {
    background: linear-gradient(45deg, var(--accent-color), rgba(255, 215, 0, 0.5), var(--accent-color));
}

.game-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* CHEAT CARD (FOR CATALOG PAGES) */
.cheat-card {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cheat-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.25);
}

.cheat-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.cheat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Empty block removed */

.cheat-info {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

.cheat-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.cheat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #4ade80;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cheat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.cheat-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: white;
}

.cheat-price span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-left: 2px;
}

.cheat-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-size: 0.85rem;
}

.cheat-card:hover .cheat-btn {
    background-color: #0b5ed7;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty block removed */

.game-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.status.undetected {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.update {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-info {
    padding: 30px;
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-color);
    background: linear-gradient(90deg, #fff, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s;
}

.game-card:hover .btn-sm {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .badge {
        margin: 0 auto 30px;
    }

    .hero-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-inner {
        grid-template-columns: 1fr;
    }

    .feature-card.new-style {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 40px;
    }

    .stat-box:not(:last-child)::after {
        width: 60%;
        height: 1px;
        right: 50%;
        bottom: -20px;
        top: auto;
        transform: translate(50%, 0);
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
}

/* =========================================
   MODAL (LOGIN / REGISTER)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 8, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 150, 255, 0.05);
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.modal-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    position: relative;
}

.modal-tab:hover {
    color: var(--text-main);
}

.modal-tab.active {
    color: var(--text-main);
}

.modal-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 15px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.form-help {
    text-align: center;
    margin-top: 15px;
}

.form-help a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.form-help a:hover {
    color: var(--text-main);
}

.skeleton-prog .skel-meta {
    height: 10px;
    width: 35%;
    border-radius: 4px;
}

.skeleton-prog .skel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.skeleton-prog .skel-price {
    height: 16px;
    width: 60px;
    border-radius: 4px;
}

.skeleton-prog .skel-btn {
    height: 30px;
    width: 90px;
    border-radius: 8px;
}

/* ================= SEARCH DROPDOWN ================= */
.search-dropdown {
    background: #1a1625;
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 12px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.search-dropdown__label {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.7rem 1rem 0.3rem;
}

.search-dropdown__empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.15s;
    cursor: pointer;
}

.search-result:hover {
    background: rgba(255, 183, 0, 0.08);
}

.search-result__img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result__icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.search-result__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.search-result__name {
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result__name mark {
    background: rgba(255, 183, 0, 0.3);
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.search-result__status--undetected {
    color: #2ed573;
}

.search-result__status--detected {
    color: #ff4757;
}

.search-result__status--updating {
    color: #ffa502;
}

.search-result__status--risk {
    color: #ffa502;
}

.search-result__go {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    transition: color 0.15s;
    flex-shrink: 0;
}

.search-result:hover .search-result__go {
    color: var(--accent-primary);
}

/* ================= FAQ ACCORDION ================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 183, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-base);
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= MOBILE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-character-box {
        height: 400px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .game-logos-row {
        align-items: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-links {
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Nav */
    .nav-inner {
        height: auto;
        padding: 0.8rem 0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .btn-login {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .btn-lang {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .brand {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-clean {
        padding: 20px 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content {
        margin-left: 0;
        padding-top: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-content p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-character-box {
        display: none;
    }

    .char-glow {
        width: 200px;
        height: 200px;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .game-logos-row {
        align-items: center;
    }

    .logos-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Catalog */
    .catalog-section {
        padding: 30px 0 60px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .card-img-wrapper {
        height: 120px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-content h3 {
        font-size: 0.9rem;
    }

    .game-filters {
        flex-wrap: wrap;
    }

    /* Features */
    .features-section {
        padding: 40px 0 60px;
    }

    .text-center {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }

    /* Footer */
    .footer-clean {
        padding: 40px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .fl-col {
        align-items: center;
    }

    /* Marquee (homepage catalog) */
    .marquee-card {
        min-width: 140px !important;
    }

    /* Search */
    .search-overlay .search-box {
        width: 95vw;
        max-width: 95vw;
    }

    /* Buy modal */
    .modal-box {
        padding: 1.5rem;
    }

    .buy-steps {
        gap: 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .hero-character-box {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .btn-buy {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}