*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ========= VARS ========= */
:root {
    --bg-main: #050711;
    --bg-card: #101320;
    --bg-card-soft: #141726;

    --text-main: #f9fafb;
    --text-muted: #9ca3af;

    --accent: #8f5bff;
    --accent-soft: #4f46e5;

    --accent-platinum: #e5e7eb;
    --accent-diamond: #38bdf8;
    --accent-gold: #facc15;

    /* noi – pentru footer / reviews */
    --footer-accent: #0ea5e9;
    --footer-accent-soft: #22d3ee;
    --reviews-accent: #f97316;

    --radius-lg: 24px;
    --radius-md: 18px;

    --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.85);
}

/* ========= BASE ========= */

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background:
        radial-gradient(circle at top left, #111827 0, transparent 55%),
        radial-gradient(circle at bottom right, #020617 0, transparent 65%),
        var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
}

.page-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ========= HEADER ========= */

header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 7, 15, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(12px);
}

.nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #f9fafb;
    background: radial-gradient(circle at 30% 0, #8f5bff, #1f2937);
    box-shadow: 0 0 14px rgba(143, 91, 255, 0.7);
}

.logo-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-main {
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 12px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 10px;
    margin-left: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.nav-link {
    border-radius: 999px;
    padding: 7px 16px;
    color: #a1a5b7;
    text-decoration: none;
    transition:
        background 0.15s ease-out,
        color 0.15s ease-out,
        border-color 0.15s ease-out;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(31, 41, 55, 0.8);
    color: #e5e7eb;
}

.nav-link.active {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(129, 140, 248, 0.8);
    color: #e5e7eb;
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.header-status-text {
    font-size: 11px;
    color: var(--text-muted);
}

/* ========= BUTTONS ========= */

.btn {
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    transition:
        background 0.16s ease-out,
        color 0.16s ease-out,
        border-color 0.16s ease-out,
        transform 0.13s ease-out;
}

.btn-primary {
    background: linear-gradient(90deg, #6d4cff, #8f66ff);
    border-color: rgba(148, 163, 184, 0.35);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #7d5cff, #a580ff);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

.btn-outline:hover {
    background: rgba(31, 41, 55, 0.96);
    border-color: rgba(209, 213, 219, 0.9);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(55, 65, 81, 0.9);
    color: #e5e7eb;
}

.btn-ghost:hover {
    background: rgba(31, 41, 55, 0.96);
}

.hero-main-btn {
    padding-inline: 24px;
}

/* ========= GLOBAL CARDS ========= */

.hero-card,
.section-card {
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid rgba(31, 41, 55, 0.85);
    box-shadow: var(--shadow-soft);
}

/* ========= HERO ========= */

.hero {
    margin-top: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.5fr);
    gap: 40px;
    align-items: stretch;
}

.hero-left {
    padding: 32px 32px 28px;
}

.tagline-small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    font-size: 14px;
    color: #d1d5db;
    max-width: 560px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.hero-metric {
    padding: 8px 14px;
    border-radius: 999px;
    background: #060916;
    border: 1px solid rgba(55, 65, 81, 0.8);
    font-size: 11px;
}

.metric-label {
    color: var(--text-muted);
    margin-right: 6px;
}

.metric-value {
    font-weight: 600;
}

.hero-footnote {
    font-size: 11px;
    color: var(--text-muted);
}

/* HERO right – cu POZĂ */

.hero-right {
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(5, 7, 15, 0.96), rgba(5, 7, 15, 0.78)),
        url("assets/hero-cs16.jpg") center right / cover no-repeat;
}

.hero-right-inner {
    position: relative;
    z-index: 1;
}

.hero-right-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.panel-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}

.panel-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.status-pill {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid rgba(74, 222, 128, 0.8);
    background: rgba(6, 95, 70, 0.98);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
}

/* stats */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.stat-card {
    border-radius: var(--radius-md);
    padding: 12px 12px;
    background: rgba(6, 9, 22, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.9);
    font-size: 11px;
}

.stat-label {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 19px;
    font-weight: 600;
}

.stat-value span {
    font-size: 11px;
    color: var(--text-muted);
}

/* mini chart */

.mini-chart {
    margin-top: 20px;
    border-radius: var(--radius-md);
    padding: 12px 14px 14px;
    background: rgba(6, 9, 22, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.9);
    font-size: 11px;
}

.mini-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.mini-chart-hint {
    font-size: 10px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 84px;
}

.bar {
    flex: 1;
    border-radius: 7px;
    background: linear-gradient(180deg, #38bdf8, #1d4ed8);
    box-shadow: 0 3px 10px rgba(56, 189, 248, 0.6);
    position: relative;
    cursor: default;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.bar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 16px rgba(96, 165, 250, 0.9);
}

.bar::after {
    content: attr(data-label) " – " attr(data-value) " hits";
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, -8px);
    padding: 4px 8px;
    border-radius: 8px;
    background: #020617;
    border: 1px solid rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.bar:hover::after {
    opacity: 1;
    transform: translate(-50%, -12px);
}

/* ========= SECTIONS ========= */

.section {
    margin-top: 60px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

/* ========= MASTER-SERVER LIST ========= */

.preview-list {
    padding: 22px 22px 24px;
}

.rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 6px;
}

.row {
    position: relative;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #050816);
    border: 1px solid rgba(31, 41, 55, 0.95);
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        border-color 0.15s ease-out,
        background 0.15s ease-out;
}

.row:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
    border-color: rgba(148, 163, 184, 0.9);
}

/* accent pe categorie */
.row-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.pack-platinum .row-accent {
    background: linear-gradient(180deg, var(--accent-platinum), var(--accent));
}

.pack-diamond .row-accent {
    background: linear-gradient(180deg, var(--accent-diamond), var(--accent-soft));
}

.pack-gold .row-accent {
    background: linear-gradient(180deg, var(--accent-gold), #fb923c);
}

.row-grid {
    display: grid;
    grid-template-columns: minmax(0, 3.2fr) 1.4fr 1.9fr 180px;
    gap: 18px;
    align-items: center;
    padding: 16px 20px 16px 26px;
}

.server-name {
    font-weight: 600;
    font-size: 14px;
}

.server-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.players {
    font-size: 14px;
    font-weight: 600;
}

.players-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pill-soft {
    font-size: 11px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #020617;
    border: 1px solid rgba(55, 65, 81, 0.9);
    margin-bottom: 5px;
}

.pill-soft span {
    color: #4ade80;
}

.pill-soft-secondary {
    opacity: 0.9;
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.connect-btn {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: #020617;
    color: #f9fafb;
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        background 0.15s ease-out,
        box-shadow 0.15s ease-out,
        transform 0.15s ease-out,
        border-color 0.15s ease-out,
        color 0.15s ease-out;
}

.connect-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow: 0 0 16px rgba(129, 140, 248, 0.9);
}

.connect-primary {
    font-weight: 600;
}

.connect-ghost {
    border-style: dashed;
    background: #020617;
    color: var(--text-muted);
}

.connect-ghost:hover {
    color: #f9fafb;
}

/* ========= PRICING ========= */

.pricing-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pricing-card {
    border-radius: var(--radius-lg);
    background: var(--bg-card-soft);
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.18s ease-out;
    background: radial-gradient(circle at top left, rgba(148, 163, 255, 0.23), transparent 60%);
}

.pricing-inner {
    position: relative;
    border-radius: inherit;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.pricing-card:hover .pricing-inner {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-pill {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 5px 11px;
    border-radius: 999px;
    background: #020617;
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pricing-header {
    font-size: 15px;
    font-weight: 600;
}

.pricing-price {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}

.pricing-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-list {
    margin-top: 12px;
    font-size: 12px;
    color: #d1d5db;
    padding-left: 18px;
    flex: 1;
}

.pricing-list li {
    margin-bottom: 5px;
}

.pricing-cta {
    margin-top: 16px;
    align-self: stretch;
    text-align: center;
    font-size: 11px;
    padding: 9px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    transition:
        background 0.16s ease-out,
        border-color 0.16s ease-out,
        transform 0.13s ease-out;
}

.pricing-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #6d4cff, #8f66ff);
    border-color: rgba(191, 219, 254, 0.9);
    color: #ffffff;
}

/* culori pe pachet */

.pricing-platinum {
    border-color: rgba(229, 231, 235, 0.35);
}

.pricing-diamond {
    border-color: rgba(56, 189, 248, 0.4);
}

.pricing-gold {
    border-color: rgba(250, 204, 21, 0.35);
}

/* ========= LIVE EVIDENCE ========= */

.evidence-shell {
    display: grid;
    grid-template-columns: minmax(0, 3fr) 260px;
    gap: 22px;
    align-items: stretch;
}

.evidence-card {
    border-radius: var(--radius-lg);
    padding: 20px 20px 18px;
}

.evidence-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.evidence-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.evidence-stat-value {
    font-size: 20px;
    font-weight: 600;
}

.evidence-stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

.evidence-hint {
    font-size: 11px;
    color: var(--text-muted);
}

.evidence-table-wrapper {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: auto;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: #020617;
}

.evidence-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 11px;
}

.evidence-table thead {
    background: #020617;
}

.evidence-table th,
.evidence-table td {
    padding: 9px 10px;
    text-align: left;
}

.evidence-table th {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(31, 41, 55, 1);
}

/* rânduri normale */
.evidence-table tbody tr {
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    background: radial-gradient(circle at top left, #050816, #020617);
    transition:
        background 0.18s ease-out,
        transform 0.14s ease-out,
        box-shadow 0.18s ease-out;
}

.evidence-table tbody tr:nth-child(even) {
    background: radial-gradient(circle at top left, #070a18, #020617);
}

.evidence-table tbody tr:hover {
    background: radial-gradient(circle at top left, #1d4ed8, #020617);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9);
}

/* HOT ROW – efect constant + glow */

.evidence-hot-row {
    position: relative;
    background:
        linear-gradient(120deg, rgba(129, 140, 248, 0.24), transparent 45%),
        radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.28), #020617);
    background-size: 200% 200%;
    animation: hotRowSweep 7s ease-in-out infinite;
}

.evidence-hot-row td {
    border-top: 1px solid rgba(129, 140, 248, 0.6);
    border-bottom: 1px solid rgba(129, 140, 248, 0.6);
}

@keyframes hotRowSweep {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.0);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 32px rgba(79, 70, 229, 0.9);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.0);
    }
}

/* jucător – badge cu glow */

.player-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.9);
    background: radial-gradient(circle at 0 0, #1d2450, #020617);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
    transition:
        transform 0.16s ease-out,
        box-shadow 0.16s ease-out,
        border-color 0.16s ease-out,
        background 0.16s ease-out;
}

.player-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(129, 140, 248, 0.4), transparent 60%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    pointer-events: none;
}

.player-pill::after {
    content: "master-hit player";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 6px);
    padding: 4px 8px;
    border-radius: 8px;
    background: #020617;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.player-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(191, 219, 254, 0.95);
    background: radial-gradient(circle at 0 0, #3730a3, #020617);
    box-shadow: 0 0 12px rgba(129, 140, 248, 0.9);
}

.player-pill:hover::before {
    opacity: 0.9;
    transform: translateX(0);
}

.player-pill:hover::after {
    opacity: 1;
    transform: translate(-50%, 2px);
}

/* player pe hot row – pulse continuu */

.evidence-hot-row .player-pill {
    animation: hotPlayerPulse 3.6s ease-in-out infinite;
}

@keyframes hotPlayerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.0);
        border-color: rgba(129, 140, 248, 0.7);
    }

    50% {
        box-shadow: 0 0 18px rgba(129, 140, 248, 1);
        border-color: rgba(191, 219, 254, 1);
        background: radial-gradient(circle at 0 0, #4f46e5, #020617);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.0);
        border-color: rgba(129, 140, 248, 0.7);
        background: radial-gradient(circle at 0 0, #1d2450, #020617);
    }
}

/* server – underline animat + badge */

.evidence-server {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    padding-right: 6px;
}

.evidence-server-name {
    font-weight: 500;
    font-size: 11px;
    cursor: default;
    position: relative;
    padding-bottom: 1px;
    transition: color 0.16s ease-out, transform 0.14s ease-out;
}

.evidence-server-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #6d28d9, #38bdf8);
    transition: width 0.22s ease-out;
}

.evidence-server-sub {
    font-size: 10px;
    color: var(--text-muted);
    transition: color 0.16s ease-out;
}

.evidence-server:hover .evidence-server-name {
    color: #e5e7eb;
    transform: translateY(-1px);
}

.evidence-server:hover .evidence-server-name::after {
    width: 100%;
}

.evidence-server:hover .evidence-server-sub {
    color: #c7d2fe;
}

/* hot row server – gradient text */

.evidence-hot-row .evidence-server-name {
    background: linear-gradient(90deg, #e5e7eb, #a5b4fc, #22c55e, #a5b4fc, #e5e7eb);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    color: transparent;
    animation: hotServerSheen 5.5s linear infinite;
}

.evidence-hot-row .evidence-server-sub {
    color: #d1d5ff;
}

@keyframes hotServerSheen {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ========= HITS TODAY COUNTER ========= */

.evidence-counter {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 20px 18px 18px;
    background:
        radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.28), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(30, 64, 175, 0.9), #020617);
    border: 1px solid rgba(129, 140, 248, 0.6);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.evidence-counter::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 160deg,
            rgba(96, 165, 250, 0.1),
            rgba(129, 140, 248, 0.4),
            transparent 55%,
            transparent);
    opacity: 0.9;
    mix-blend-mode: screen;
    animation: spinGlow 18s linear infinite;
}

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

.evidence-counter-label {
    position: relative;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(226, 232, 240, 0.8);
}

.evidence-counter-value {
    position: relative;
    margin-top: 8px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #e5e7eb, #a5b4fc, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}

.evidence-counter-sub {
    position: relative;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(209, 213, 219, 0.75);
}

/* ========= CAROUSEL (GALLERY) – VERSION WOW ========= */

.carousel-shell {
    margin-top: 16px;
    padding: 20px 20px 22px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.22), #020617);
    border: 1px solid rgba(37, 99, 235, 0.85);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(6px);
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 260px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: stretch;
    padding: 6px 4px 6px 0;

    opacity: 0;
    pointer-events: none;
    transform: translateX(24px) scale(0.97);
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out;
}

.carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    animation: carouselPop 0.55s ease-out;
}

@keyframes carouselPop {
    0% {
        transform: translateX(20px) scale(0.96);
        opacity: 0;
    }

    60% {
        transform: translateX(0) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

.carousel-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.7);
    background: radial-gradient(circle at top left, #0b1120, #020617);
}

.carousel-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transform-origin: center center;
    transition: transform 0.5s ease-out;
}

/* glow + reflex peste imagine */
.carousel-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.carousel-slide.is-active .carousel-media::after {
    opacity: 0.8;
}

.carousel-slide.is-active .carousel-media img {
    transform: scale(1.03);
}

.carousel-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 4px 10px 6px;
}

.carousel-title {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.carousel-subtitle {
    font-size: 13px;
    color: #d1d5db;
    max-width: 520px;
    line-height: 1.6;
}

/* săgeți */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.7);
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s ease-out,
        border-color 0.2s ease-out,
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out;
    z-index: 2;
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-arrow:hover {
    background: radial-gradient(circle at top left, var(--footer-accent-soft), var(--footer-accent));
    border-color: rgba(56, 189, 248, 1);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
    transform: translateY(-50%) translateY(-1px);
}

/* bullet dots */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: #020617;
    cursor: pointer;
    padding: 0;
    transition:
        background 0.18s ease-out,
        border-color 0.18s ease-out,
        transform 0.18s ease-out,
        width 0.2s ease-out;
}

.carousel-dot.is-active {
    width: 22px;
    background: linear-gradient(90deg, var(--footer-accent-soft), var(--footer-accent));
    border-color: rgba(56, 189, 248, 1);
    transform: translateY(-1px);
}

/* ========= REVIEWS ========= */

.reviews-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    padding: 18px 20px 20px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), #020617);
    border: 1px solid rgba(30, 64, 175, 0.8);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
}

/* cardul în sine */
.review-card {
    position: relative;
    border-radius: 20px;
    background: radial-gradient(circle at bottom right, #020617, #050816);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 0 16px 18px 16px;
    /* top = 0, pentru că header-ul e scos în afară */
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);

    opacity: 0.85;
    transform: translateY(4px) scale(0.99);
    transition:
        opacity 0.35s ease-out,
        transform 0.35s ease-out,
        box-shadow 0.25s ease-out,
        border-color 0.25s ease-out,
        background 0.25s ease-out;
}

/* banda de sus – aici dispare negrul simplu */
.review-top {
    margin: -1px -16px 12px;
    /* iese în afara padding-ului cardului */
    padding: 10px 16px;
    border-radius: 19px 19px 14px 14px;
    background:
        linear-gradient(120deg, rgba(129, 140, 248, 0.45), rgba(56, 189, 248, 0.25)),
        radial-gradient(circle at top left, #111827, #020617);
    border-bottom: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.8),
        0 16px 30px rgba(15, 23, 42, 0.9);
}

/* când intră în viewport (IntersectionObserver) – dacă nu-l folosești, poți ignora clasa */
.review-card.is-visible {
    opacity: 0.95;
    transform: translateY(0) scale(1);
}

/* cardul featured – rotație din JS, pur cosmetic */
.review-card.is-featured {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(129, 140, 248, 0.95);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 1),
        0 26px 70px rgba(15, 23, 42, 1);
}

.review-card.is-featured .review-top {
    background:
        linear-gradient(120deg, rgba(129, 140, 248, 0.7), rgba(56, 189, 248, 0.45)),
        radial-gradient(circle at top left, #0b1120, #020617);
}

/* bara de progres jos pe card featured */
.review-card.is-featured::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 9px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #22c55e);
    transform-origin: left center;
    animation: reviewProgress 8s linear forwards;
}

@keyframes reviewProgress {
    from {
        transform: scaleX(0);
        opacity: 0.4;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* conținut header */

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.review-id {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
}

.review-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* stele */

.review-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-star {
    font-size: 14px;
    opacity: 0.25;
    color: #fbbf24;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.review-star.is-filled {
    opacity: 1;
}


.review-card.is-featured .review-star.is-filled {
    opacity: 1;
    color: #fedb41;
    transform: translateY(-1px) scale(1.05);
    text-shadow: 0 0 14px rgba(251, 191, 36, 1);
}

/* textul efectiv */

.review-text {
    font-size: 13px;
    color: #e5e7eb;
    line-height: 1.55;
    margin-top: 2px;
}

/* responsive pentru reviews */

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        padding-inline: 14px;
    }
}


/* ========= FOOTER – BLUE / CYAN THEME ========= */

.site-footer {
    margin-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
    border-top: 1px solid rgba(30, 64, 175, 0.8);
    position: relative;
    overflow: hidden;
}

/* linie subțire colorată sus */
.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(56, 189, 248, 0.9),
            rgba(37, 99, 235, 0.9),
            transparent);
    opacity: 0.9;
}

.footer-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 22px 24px 26px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #f9fafb;
    background: radial-gradient(circle at 30% 0, var(--footer-accent-soft), #020617);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.95);
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-title {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-subtitle {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid rgba(30, 64, 175, 0.7);
    background: rgba(15, 23, 42, 0.92);
    transition:
        background 0.18s ease-out,
        border-color 0.18s ease-out,
        color 0.18s ease-out,
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out;
}

/* hover fără mov – cyan/blue + glow */
.footer-links a:hover {
    background: radial-gradient(circle at top left,
            rgba(34, 211, 238, 0.18),
            rgba(15, 23, 42, 1));
    border-color: rgba(56, 189, 248, 1);
    color: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.8);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 11px;
    color: var(--text-muted);
}

/* ========= RESPONSIVE ========= */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .evidence-shell {
        grid-template-columns: minmax(0, 1.7fr) 240px;
    }
}

@media (max-width: 900px) {
    .row-grid {
        grid-template-columns: minmax(0, 2.4fr) 1.4fr;
        grid-template-rows: auto auto;
    }

    .row-grid>div:nth-child(3),
    .row-grid>div:nth-child(4) {
        grid-column: 1 / -1;
        margin-top: 6px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evidence-shell {
        grid-template-columns: 1fr;
    }

    .evidence-counter {
        order: -1;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .carousel-media {
        max-width: 100%;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        padding-inline: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding-inline: 16px;
    }

    .nav-links {
        display: none;
    }

    .page-shell {
        padding-inline: 16px;
    }

    .hero-left {
        padding: 24px 20px 22px;
    }

    .hero-title {
        font-size: 26px;
    }

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

    .footer-main {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    header {
        position: sticky;
    }

    .nav-right {
        flex: 1;
        justify-content: flex-end;
    }

    .hero-metrics {
        gap: 10px;
    }

    .hero-metric {
        flex: 1 1 calc(50% - 8px);
    }

    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .rows {
        gap: 12px;
    }

    .row-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .row-grid>div {
        margin-top: 4px;
    }

    .actions {
        justify-content: flex-start;
    }

    .evidence-card {
        padding-inline: 14px;
    }

    .evidence-counter {
        padding-inline: 16px;
    }

    .carousel-shell {
        padding-inline: 14px;
    }

    .carousel-arrow {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding-inline: 14px;
    }

    .footer-main {
        padding-inline: 16px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .connect-btn,
    .pricing-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .header-status-text {
        display: none;
    }
}

/* ========= COMPACT FIX (MASTER + TURBO) ========= */

/* scoatem padding-ul suplimentar de pe .row */
.preview-list-compact .row,
.preview-list-turbo .row {
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
}

/* grid mai strâns, mai puțin padding în interior */
.row-grid-compact {
    padding: 8px 14px 8px 22px;
    /* inainte era 16px 20px 16px 26px */
    column-gap: 14px;
}

/* spațiu mai mic între rânduri */
.rows-compact,
.rows-turbo {
    gap: 10px;
}

/* fonturi mai mici pe nume + meta */
.row-compact .server-name,
.row-turbo .server-name {
    font-size: 12px;
    font-weight: 600;
}

.row-compact .server-meta,
.row-turbo .server-meta {
    font-size: 10px;
    opacity: 0.75;
}

/* players un pic mai mici */
.row-compact .players,
.row-turbo .players {
    font-size: 12px;
}

/* ========= DROPS ========= */

.row-col-drops {
    display: flex;
    gap: 8px;
    font-size: 10px;
}

.drops-group {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 999px;
    padding: 4px 8px;
    /* mai mic decât 6px 10px */
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.drops-group-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .75;
}

.drops-stat-row {
    display: flex;
    justify-content: space-between;
}

.drops-chip-label {
    opacity: .7;
}

.drops-chip-value {
    font-weight: 600;
}

/* master un pic mai „soft” */
.drops-group-master {
    background: rgba(255, 255, 255, 0.012);
}

/* ========= PILL EXPIRE + META ========= */

.pill-soft {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 4px;
}

.pill-soft-expire-small,
.pill-soft-expire-turbo {
    font-size: 10px;
    padding: 3px 8px;
}

.row-col-expire {
    min-width: 140px;
    text-align: right;
    font-size: 10px;
}

.row-col-expire .expire-sub {
    margin-top: 3px;
    opacity: .7;
    font-size: 10px;
}

/* ========= BUTOANE MAI MICI ========= */

.preview-list .connect-btn {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
}

.actions-tight {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.actions-turbo {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}


/* MASTER: doar queries, fara drops */
.preview-list-master .row-col-drops,
.preview-list-master .drops-group {
    display: none;
}

/* TURBO: drops mai aerisite */
.preview-list-turbo .row-col-drops {
    display: flex;
    gap: 14px;
}

.preview-list-turbo .drops-group {
    padding: 8px 13px;
    gap: 4px;
    /* spatiu intre liniile interne */
    line-height: 1.3;
}

.preview-list-turbo .drops-stat-row {
    margin-top: 3px;
    /* spatiu intre "Unique" si "Total" */
}

.preview-list-turbo .drops-chip-label,
.preview-list-turbo .drops-chip-value {
    line-height: 1.3;
}

/* Header nav – butoane mai compacte, ca înainte */
.nav .btn,
.nav .nav-link {
    font-size: 11px;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* small tweak so nav buttons keep same style */
.nav .btn,
.nav .nav-link {
    font-size: 12px;
}

/* ==== HEADER NAV – micsoram butoanele si spatierea ==== */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 32px;
    /* sa nu fie lipite de logo */
}

.nav-link {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 999px;
}

/* ==== MASTER-SERVER – coloana cu Pack/Queries/Expires mutata in dreapta ==== */
.row-grid-master {
    display: flex;
    align-items: center;
}

.row-col-expire-master {
    margin-left: auto;
    /* impinge coloana la extrema dreapta */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
}

.auth-form .auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.auth-field span {
    font-size: 13px;
    color: #9ca3af;
}

.auth-field input,
.auth-field select,
.auth-field textarea {
    background: #050814;
    border-radius: 10px;
    border: 1px solid #1f2937;
    padding: 10px 12px;
    color: #e5e7eb;
    font-size: 14px;
}

.auth-field textarea {
    resize: vertical;
}

.auth-submit {
    width: 100%;
    margin-top: 6px;
}

.auth-errors,
.auth-success {
    background: #111827;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 13px;
}

.auth-errors {
    border: 1px solid #b91c1c;
    color: #fecaca;
}

.auth-success {
    border: 1px solid #10b981;
    color: #bbf7d0;
}

.auth-footnote {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}

.section-inner-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.simple-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 0;
    font-size: 13px;
    color: #9ca3af;
}

.simple-list li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

}
