:root {
    --bg: #07101c;
    --side: #050b14;
    --panel: #101a28;
    --panel-soft: #152235;
    --line: #26364a;
    --text: #f4f7fb;
    --muted: #a9b6c8;
    --green: #30e070;
    --blue: #4da3ff;
    --orange: #ff8a24;
    --purple: #a66cff;
    --yellow: #ffd34d;
    --red: #ff6262;
    --method-color: var(--green);
    --method-soft: rgba(48, 224, 112, 0.11);
    --method-line: rgba(48, 224, 112, 0.34);
}

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

body {
    background: var(--bg);
    color: var(--text);
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

.sidebar {
    background: var(--side);
    border-right: 1px solid var(--line);
    min-height: 100vh;
    padding: 24px 18px;
    position: sticky;
    top: 0;
    width: 230px;
}

.brand {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
    padding-bottom: 22px;
}

.brand-mark,
.method-code {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
}

.brand-mark {
    background: var(--green);
    color: #06120b;
    height: 42px;
    width: 42px;
}

.brand strong,
.brand span {
    display: block;
}

.brand span {
    color: var(--green);
    font-weight: 800;
}

.sidebar nav {
    display: grid;
    gap: 7px;
    margin-top: 24px;
}

.sidebar a {
    border-radius: 10px;
    color: #dce5f2;
    padding: 11px 12px;
    text-decoration: none;
}

.sidebar a:hover,
.sidebar a.ativo {
    background: #102417;
    color: var(--green);
}

.locked-link {
    opacity: 0.72;
}

.lock-icon {
    margin-right: 4px;
}

.locked-panel {
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    justify-items: center;
    margin-top: 16px;
    min-height: 320px;
    padding: 34px;
    text-align: center;
}

.locked-mark {
    align-items: center;
    background: #102417;
    border: 1px solid rgba(48, 224, 112, 0.35);
    border-radius: 18px;
    display: inline-flex;
    font-size: 34px;
    height: 76px;
    justify-content: center;
    margin-bottom: 6px;
    width: 76px;
}

.locked-panel h2 {
    font-size: 24px;
}

.locked-panel p {
    color: var(--muted);
    line-height: 1.5;
    max-width: 560px;
}

.locked-panel a {
    background: var(--green);
    border-radius: 10px;
    color: #06120b;
    font-weight: 800;
    margin-top: 8px;
    padding: 11px 14px;
    text-decoration: none;
}

.locked-panel a.secondary-action {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    margin-top: 0;
}

.user-box {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding-top: 16px;
}

.user-box span {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.user-box strong {
    color: var(--green);
    font-size: 12px;
}

.user-box a {
    border: 1px solid var(--line);
    display: inline-flex;
    font-size: 13px;
    justify-content: center;
    padding: 8px 10px;
}

.user-box a.vip-cta {
    background: linear-gradient(135deg, rgba(48, 224, 112, 0.95), rgba(120, 242, 156, 0.82));
    border-color: rgba(120, 242, 156, 0.62);
    color: #06120b;
    font-weight: 900;
}

.user-box a.vip-cta:hover,
.user-box a.vip-cta.ativo {
    background: var(--green);
    color: #06120b;
}

.content {
    flex: 1;
    padding: 34px;
}

.auth-page {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 28px;
}

.public-page {
    display: block;
}

.public-header {
    align-items: center;
    background: rgba(5, 11, 20, 0.94);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: 14px clamp(18px, 4vw, 54px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.public-brand {
    align-items: center;
    color: var(--text);
    display: inline-flex;
    gap: 11px;
    text-decoration: none;
}

.public-brand strong,
.public-brand small {
    display: block;
}

.public-brand small {
    color: var(--green);
    font-weight: 900;
}

.public-logo-wrap {
    align-items: center;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.public-logo-wrap img {
    border-radius: 50%;
    display: block;
    height: 46px;
    object-fit: cover;
    width: 46px;
}

.public-logo-fallback {
    display: none;
}

.public-header nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.public-header nav a {
    border-radius: 999px;
    color: #dce5f2;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 12px;
    text-decoration: none;
}

.public-header nav a:hover {
    background: #102417;
    color: var(--green);
}

.public-header nav a.public-cta,
.primary-action {
    background: var(--green);
    color: #06120b;
}

.public-hero,
.public-section,
.public-warning {
    margin: 0 auto;
    max-width: 1180px;
    padding: 58px clamp(18px, 4vw, 34px);
}

.public-hero {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    min-height: calc(100vh - 75px);
}

.public-hero h1 {
    font-size: clamp(42px, 6vw, 74px);
    letter-spacing: 0;
    line-height: 0.95;
    margin: 10px 0 18px;
}

.public-hero-copy p,
.section-heading p,
.feature-list p,
.benefit-grid p,
.vip-public-grid p,
.public-warning p {
    color: var(--muted);
    line-height: 1.55;
}

.public-hero-copy > p {
    font-size: 18px;
    max-width: 680px;
}

.public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.public-actions.centered {
    justify-content: center;
}

.primary-action,
.secondary-public-action {
    border-radius: 10px;
    font-weight: 900;
    padding: 12px 15px;
    text-decoration: none;
}

.secondary-public-action {
    border: 1px solid var(--line);
    color: var(--text);
}

.public-note {
    border-left: 3px solid var(--green);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    margin-top: 22px;
    max-width: 560px;
    padding-left: 12px;
}

.public-logo-panel {
    align-items: center;
    background: radial-gradient(circle at center, rgba(48, 224, 112, 0.16), rgba(16, 26, 40, 0.72) 54%, rgba(5, 11, 20, 0.98));
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 22px;
    display: grid;
    justify-items: center;
    min-height: 430px;
    padding: 28px;
}

.public-logo-panel img {
    border-radius: 50%;
    display: block;
    max-width: min(390px, 100%);
    width: 100%;
}

.public-logo-placeholder {
    align-items: center;
    display: none;
    gap: 12px;
    justify-items: center;
    text-align: center;
}

.public-logo-placeholder span {
    align-items: center;
    background: var(--green);
    border-radius: 24px;
    color: #06120b;
    display: inline-flex;
    font-size: 52px;
    font-weight: 900;
    height: 132px;
    justify-content: center;
    width: 132px;
}

.ai-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tech-tags span {
    background: rgba(48, 224, 112, 0.1);
    border: 1px solid rgba(48, 224, 112, 0.28);
    border-radius: 999px;
    color: #d9ffe7;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.proof-strip {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    max-width: 620px;
}

.proof-strip div {
    background: rgba(16, 26, 40, 0.72);
    border: 1px solid rgba(38, 54, 74, 0.9);
    border-radius: 12px;
    padding: 13px;
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    color: var(--green);
    font-size: 21px;
}

.proof-strip span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-access-cards {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
    max-width: 760px;
}

.hero-access-cards article {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.08), rgba(77, 163, 255, 0.04)),
        rgba(16, 26, 40, 0.72);
    border: 1px solid rgba(38, 54, 74, 0.9);
    border-radius: 12px;
    padding: 13px;
}

.hero-access-cards article.highlight {
    border-color: rgba(48, 224, 112, 0.42);
    box-shadow: 0 16px 60px rgba(48, 224, 112, 0.08);
}

.hero-access-cards span {
    color: var(--green);
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-access-cards strong {
    display: block;
    margin-bottom: 5px;
}

.hero-access-cards p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.ai-visual {
    background:
        linear-gradient(90deg, rgba(77, 163, 255, 0.09) 1px, transparent 1px),
        linear-gradient(rgba(48, 224, 112, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 35%, rgba(48, 224, 112, 0.16), rgba(16, 26, 40, 0.72) 48%, rgba(5, 11, 20, 0.98));
    background-size: 34px 34px, 34px 34px, auto;
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 22px;
    min-height: 430px;
    overflow: hidden;
    padding: 24px;
    position: relative;
}

.neural-hero-panel {
    display: grid;
    grid-template-rows: minmax(250px, 1fr) auto;
    gap: 16px;
}

.ai-visual::before {
    background: linear-gradient(90deg, transparent, rgba(48, 224, 112, 0.2), transparent);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 34%;
    width: 100%;
}

.neural-image {
    background:
        radial-gradient(circle at 28% 24%, rgba(48, 224, 112, 0.26), transparent 28%),
        radial-gradient(circle at 72% 40%, rgba(77, 163, 255, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(5, 11, 20, 0.18), rgba(16, 26, 40, 0.72));
    border: 1px solid rgba(244, 247, 251, 0.12);
    border-radius: 18px;
    min-height: 285px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.neural-image::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    inset: 0;
    opacity: 0.7;
    position: absolute;
}

.ai-hero-image {
    background:
        radial-gradient(circle at 50% 50%, rgba(48, 224, 112, 0.18), transparent 54%),
        rgba(5, 11, 20, 0.78);
    border: 1px solid rgba(244, 247, 251, 0.12);
    border-radius: 18px;
    box-shadow: 0 28px 95px rgba(0, 0, 0, 0.32);
    min-height: 315px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ai-hero-image::after {
    background:
        linear-gradient(180deg, transparent 58%, rgba(5, 11, 20, 0.32)),
        radial-gradient(circle at 50% 35%, transparent 0 42%, rgba(5, 11, 20, 0.18) 78%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.ai-hero-image img {
    display: block;
    height: 100%;
    min-height: 315px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    width: 100%;
}

.neural-network-visual {
    background:
        radial-gradient(circle at 50% 44%, rgba(48, 224, 112, 0.18), transparent 24%),
        radial-gradient(circle at 76% 18%, rgba(77, 163, 255, 0.18), transparent 26%),
        linear-gradient(145deg, rgba(4, 10, 18, 0.98), rgba(8, 24, 40, 0.96));
    box-shadow:
        inset 0 0 0 1px rgba(48, 224, 112, 0.06),
        0 28px 90px rgba(0, 0, 0, 0.24);
    min-height: 315px;
}

.neural-network-visual::after {
    background:
        radial-gradient(circle at 50% 43%, transparent 0 18%, rgba(48, 224, 112, 0.18) 19%, transparent 20%),
        radial-gradient(circle at 50% 43%, transparent 0 31%, rgba(77, 163, 255, 0.12) 32%, transparent 33%),
        linear-gradient(180deg, transparent, rgba(5, 11, 20, 0.36));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.network-glow {
    background:
        radial-gradient(circle at 50% 45%, rgba(93, 255, 160, 0.75), rgba(48, 224, 112, 0.22) 22%, transparent 48%),
        radial-gradient(circle at 50% 45%, rgba(77, 163, 255, 0.28), transparent 58%);
    filter: blur(1px);
    inset: 0;
    position: absolute;
    z-index: 2;
}

.network-node {
    background:
        radial-gradient(circle at 34% 28%, #ffffff 0 13%, #caffd9 14% 28%, #38df74 48%, #0d4026 100%);
    border: 1px solid rgba(231, 255, 238, 0.95);
    border-radius: 999px;
    box-shadow:
        0 0 22px rgba(48, 224, 112, 0.58),
        0 0 42px rgba(77, 163, 255, 0.18);
    height: 20px;
    position: absolute;
    width: 20px;
    z-index: 5;
}

.network-link {
    background: linear-gradient(90deg, rgba(48, 224, 112, 0.18), rgba(48, 224, 112, 0.9), rgba(77, 163, 255, 0.55));
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(48, 224, 112, 0.32);
    height: 3px;
    position: absolute;
    transform-origin: left center;
    z-index: 4;
}

.n1 { left: 9%; top: 22%; }
.n2 { left: 9%; top: 43%; }
.n3 { left: 9%; top: 64%; }
.n4 { left: 31%; top: 31%; }
.n5 { left: 31%; top: 56%; }
.n6 { left: 53%; top: 24%; }
.n7 { left: 53%; top: 46%; }
.n8 { left: 53%; top: 67%; }
.n9 { left: 77%; top: 34%; }
.n10 { left: 77%; top: 58%; }
.n11 {
    height: 34px;
    left: calc(50% - 17px);
    top: calc(45% - 17px);
    width: 34px;
}

.l1 { left: 13%; top: 26%; transform: rotate(18deg); width: 92px; }
.l2 { left: 13%; top: 48%; transform: rotate(-8deg); width: 88px; }
.l3 { left: 13%; top: 68%; transform: rotate(-24deg); width: 98px; }
.l4 { left: 35%; top: 35%; transform: rotate(16deg); width: 88px; }
.l5 { left: 35%; top: 58%; transform: rotate(-17deg); width: 90px; }
.l6 { left: 57%; top: 28%; transform: rotate(22deg); width: 94px; }
.l7 { left: 57%; top: 50%; transform: rotate(-7deg); width: 82px; }
.l8 { left: 57%; top: 69%; transform: rotate(-24deg); width: 92px; }
.l9 { left: 34%; top: 47%; transform: rotate(-7deg); width: 154px; }

.network-caption {
    backdrop-filter: blur(14px);
    background: rgba(5, 11, 20, 0.72);
    border: 1px solid rgba(77, 163, 255, 0.22);
    border-radius: 14px;
    bottom: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
    left: 18px;
    padding: 13px 14px;
    position: absolute;
    right: 18px;
    z-index: 8;
}

.network-caption span {
    color: var(--green);
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.network-caption strong {
    color: var(--text);
    display: block;
    font-size: 15px;
}

.advanced-ai-visual {
    background:
        radial-gradient(circle at 50% 44%, rgba(114, 255, 177, 0.28), transparent 21%),
        radial-gradient(circle at 30% 25%, rgba(77, 163, 255, 0.22), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(48, 224, 112, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(4, 10, 18, 0.96), rgba(9, 22, 39, 0.98));
    min-height: 315px;
}

.advanced-ai-visual::before {
    background:
        linear-gradient(90deg, rgba(77, 163, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(48, 224, 112, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at 50% 44%, #000 0, transparent 72%);
    opacity: 0.72;
}

.advanced-ai-visual::after {
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(circle at 50% 45%, transparent 0 32%, rgba(48, 224, 112, 0.18) 33%, transparent 34%),
        radial-gradient(circle at 50% 45%, transparent 0 43%, rgba(77, 163, 255, 0.13) 44%, transparent 45%);
    content: "";
    inset: 0;
    opacity: 0.95;
    position: absolute;
}

.matrix-grid {
    background:
        linear-gradient(110deg, transparent 0 28%, rgba(48, 224, 112, 0.12) 29%, transparent 31% 100%),
        linear-gradient(250deg, transparent 0 31%, rgba(77, 163, 255, 0.12) 32%, transparent 34% 100%);
    inset: 0;
    position: absolute;
    z-index: 2;
}

.ai-orb {
    background:
        radial-gradient(circle at 32% 24%, #ffffff 0 9%, #b7ffd0 10% 20%, transparent 21%),
        radial-gradient(circle at 50% 50%, rgba(93, 255, 160, 0.98), rgba(21, 171, 93, 0.82) 38%, rgba(16, 73, 122, 0.48) 64%, transparent 72%);
    border: 1px solid rgba(207, 255, 224, 0.82);
    border-radius: 999px;
    box-shadow:
        0 0 38px rgba(48, 224, 112, 0.65),
        0 0 90px rgba(77, 163, 255, 0.24),
        inset 0 0 28px rgba(255, 255, 255, 0.32);
    height: 118px;
    left: 50%;
    position: absolute;
    top: 44%;
    transform: translate(-50%, -50%);
    width: 118px;
    z-index: 5;
}

.ai-ring {
    border: 1px solid rgba(145, 255, 186, 0.36);
    border-radius: 999px;
    box-shadow: 0 0 40px rgba(48, 224, 112, 0.13);
    left: 50%;
    position: absolute;
    top: 44%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.ring-one {
    height: 172px;
    width: 172px;
}

.ring-two {
    border-color: rgba(77, 163, 255, 0.28);
    height: 228px;
    width: 228px;
}

.ring-three {
    border-color: rgba(244, 247, 251, 0.13);
    height: 284px;
    width: 284px;
}

.data-stream {
    display: grid;
    gap: 9px;
    position: absolute;
    width: 128px;
    z-index: 4;
}

.data-stream span {
    background: linear-gradient(90deg, transparent, rgba(48, 224, 112, 0.9), rgba(77, 163, 255, 0.75), transparent);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(48, 224, 112, 0.25);
    height: 3px;
}

.data-stream span:nth-child(2),
.data-stream span:nth-child(4) {
    opacity: 0.58;
    width: 76%;
}

.stream-one {
    left: 30px;
    top: 92px;
    transform: rotate(16deg);
}

.stream-two {
    bottom: 82px;
    right: 30px;
    transform: rotate(-17deg);
}

.prediction-panel,
.signal-card {
    backdrop-filter: blur(12px);
    background: rgba(5, 11, 20, 0.72);
    border: 1px solid rgba(77, 163, 255, 0.22);
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
    position: absolute;
    z-index: 6;
}

.prediction-panel {
    padding: 14px 15px;
    right: 18px;
    top: 18px;
    width: 190px;
}

.prediction-panel span,
.signal-card span {
    color: var(--green);
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.prediction-panel strong,
.signal-card strong {
    display: block;
}

.prediction-panel strong {
    font-size: 20px;
}

.prediction-panel small {
    color: var(--muted);
    display: block;
    font-size: 11px;
    line-height: 1.35;
    margin-top: 5px;
}

.signal-card {
    padding: 12px 13px;
    width: 165px;
}

.signal-a {
    bottom: 22px;
    left: 22px;
}

.signal-b {
    bottom: 22px;
    right: 22px;
}

.signal-card strong {
    font-size: 13px;
    line-height: 1.25;
}

.scan-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(48, 224, 112, 0.65), transparent);
    box-shadow: 0 0 24px rgba(48, 224, 112, 0.34);
    height: 1px;
    left: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 58%;
    z-index: 7;
}

.neural-layer {
    display: grid;
    gap: 18px;
    position: absolute;
    z-index: 3;
}

.neural-layer span {
    background:
        radial-gradient(circle at 35% 30%, #ffffff, #78f29c 38%, #145f32 72%);
    border: 3px solid rgba(244, 247, 251, 0.84);
    border-radius: 999px;
    box-shadow: 0 0 26px rgba(48, 224, 112, 0.42);
    height: 23px;
    width: 23px;
}

.layer-a { left: 8%; top: 16%; }
.layer-b { left: 34%; top: 24%; }
.layer-c { left: 60%; top: 13%; }
.layer-d { left: 85%; top: 32%; }

.neural-flow {
    background: linear-gradient(90deg, rgba(244, 247, 251, 0.18), rgba(48, 224, 112, 0.92), rgba(77, 163, 255, 0.5));
    border-radius: 999px;
    height: 3px;
    position: absolute;
    transform-origin: left center;
    z-index: 2;
}

.f-a { left: 13%; top: 22%; transform: rotate(16deg); width: 120px; }
.f-b { left: 13%; top: 42%; transform: rotate(-12deg); width: 118px; }
.f-c { left: 13%; top: 62%; transform: rotate(-31deg); width: 136px; }
.f-d { left: 39%; top: 31%; transform: rotate(18deg); width: 116px; }
.f-e { left: 39%; top: 50%; transform: rotate(-14deg); width: 120px; }
.f-f { left: 39%; top: 68%; transform: rotate(-31deg); width: 128px; }
.f-g { left: 66%; top: 28%; transform: rotate(25deg); width: 95px; }
.f-h { left: 66%; top: 60%; transform: rotate(-20deg); width: 88px; }

.ai-explain-card {
    background: rgba(5, 11, 20, 0.78);
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    z-index: 3;
}

.ai-explain-card span {
    color: var(--green);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ai-explain-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.ai-explain-card p {
    color: var(--muted);
    line-height: 1.5;
}

.ai-card {
    background: rgba(16, 26, 40, 0.86);
    border: 1px solid rgba(77, 163, 255, 0.26);
    border-radius: 14px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    padding: 16px;
    position: relative;
    z-index: 2;
}

.main-ai-card {
    margin-left: auto;
    max-width: 250px;
}

.ai-card span,
.ai-card small {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.ai-card strong {
    display: block;
    font-size: 22px;
    margin: 6px 0 10px;
}

.ai-meter {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 9px;
    margin-bottom: 10px;
    overflow: hidden;
}

.ai-meter i {
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: inherit;
    display: block;
    height: 100%;
    width: 78%;
}

.neural-board {
    height: 250px;
    margin: 6px 0 18px;
    position: relative;
}

.node,
.link {
    position: absolute;
}

.node {
    background: var(--green);
    border: 5px solid rgba(244, 247, 251, 0.92);
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(48, 224, 112, 0.42);
    height: 24px;
    width: 24px;
    z-index: 2;
}

.n1 { left: 7%; top: 18%; }
.n2 { left: 8%; top: 66%; }
.n3 { left: 38%; top: 36%; }
.n4 { left: 38%; top: 76%; }
.n5 { left: 68%; top: 20%; }
.n6 { left: 72%; top: 58%; }
.n7 { left: 88%; top: 38%; }

.link {
    background: rgba(244, 247, 251, 0.78);
    height: 4px;
    transform-origin: left center;
    z-index: 1;
}

.l1 { left: 11%; top: 23%; transform: rotate(21deg); width: 142px; }
.l2 { left: 12%; top: 70%; transform: rotate(-24deg); width: 138px; }
.l3 { left: 42%; top: 42%; transform: rotate(-20deg); width: 140px; }
.l4 { left: 42%; top: 80%; transform: rotate(-33deg); width: 160px; }
.l5 { left: 72%; top: 26%; transform: rotate(34deg); width: 94px; }
.l6 { left: 76%; top: 62%; transform: rotate(-28deg); width: 78px; }

.ai-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}

.ai-stats div {
    background: rgba(5, 11, 20, 0.7);
    border: 1px solid rgba(38, 54, 74, 0.9);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.ai-stats strong,
.ai-stats span {
    display: block;
}

.ai-stats strong {
    color: var(--green);
    font-size: 22px;
}

.ai-stats span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 22px;
    max-width: 780px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 8px 0 10px;
}

.access-preview-section {
    padding-top: 16px;
}

.access-preview-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-preview-grid article {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.07), rgba(77, 163, 255, 0.04)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
}

.access-preview-grid article.highlight {
    border-color: rgba(48, 224, 112, 0.34);
    box-shadow: 0 18px 70px rgba(48, 224, 112, 0.08);
}

.access-preview-grid span {
    color: var(--green);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.access-preview-grid strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.access-preview-grid p {
    color: var(--muted);
    line-height: 1.55;
}

.public-model-grid,
.benefit-grid,
.vip-public-grid,
.feature-list {
    display: grid;
    gap: 14px;
}

.public-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-model-card,
.benefit-grid article,
.vip-public-grid article,
.feature-list div,
.public-warning {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.public-model-card {
    align-items: center;
    display: flex;
    gap: 13px;
    padding: 16px;
}

.public-model-card p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.split-section {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-list {
    counter-reset: feature;
}

.feature-list div,
.benefit-grid article,
.vip-public-grid article {
    padding: 18px;
}

.feature-list span {
    align-items: center;
    background: #102417;
    border: 1px solid rgba(48, 224, 112, 0.34);
    border-radius: 999px;
    color: var(--green);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    margin-bottom: 10px;
    width: 30px;
}

.benefit-grid,
.vip-public-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid strong,
.vip-public-grid strong,
.feature-list strong {
    display: block;
    margin-bottom: 7px;
}

.vip-public-section {
    text-align: center;
}

.vip-public-section .section-heading {
    margin-left: auto;
    margin-right: auto;
}

.public-warning {
    margin-bottom: 44px;
    padding: 20px clamp(18px, 4vw, 28px);
}

.public-warning strong {
    color: var(--green);
    display: block;
    margin-bottom: 8px;
}

.public-terms a {
    color: var(--green);
    display: inline-flex;
    font-weight: 900;
    margin-top: 12px;
    text-decoration: none;
}

.terms-page {
    max-width: 980px;
}

.terms-content {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.terms-content article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
}

.terms-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.terms-content p {
    color: var(--muted);
    line-height: 1.55;
}

.auth-shell {
    width: min(440px, 100%);
}

.auth-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
}

.auth-brand {
    margin-bottom: 22px;
}

.auth-heading {
    margin-bottom: 18px;
}

.auth-heading h1 {
    font-size: 30px;
    margin: 6px 0;
}

.auth-heading p,
.auth-demo {
    color: var(--muted);
    font-size: 14px;
}

.auth-error {
    background: rgba(255, 98, 98, 0.13);
    border: 1px solid rgba(255, 98, 98, 0.4);
    border-radius: 10px;
    color: #ffd4d4;
    margin-bottom: 14px;
    padding: 10px 12px;
}

.auth-success {
    background: rgba(48, 224, 112, 0.12);
    border: 1px solid rgba(48, 224, 112, 0.34);
    border-radius: 10px;
    color: #c7ffd8;
    margin-bottom: 14px;
    padding: 10px 12px;
}

.auth-form {
    display: grid;
    gap: 13px;
}

.auth-form label {
    color: var(--muted);
    display: grid;
    font-size: 13px;
    gap: 7px;
}

.auth-form input {
    background: #07111d;
    border: 1px solid #37506d;
    border-radius: 10px;
    color: var(--text);
    min-height: 42px;
    outline: none;
    padding: 0 12px;
}

.auth-form input:focus {
    border-color: var(--green);
}

.auth-form .terms-check {
    align-items: flex-start;
    background: rgba(48, 224, 112, 0.08);
    border: 1px solid rgba(48, 224, 112, 0.2);
    border-radius: 10px;
    display: flex;
    gap: 10px;
    line-height: 1.45;
    padding: 11px 12px;
}

.auth-form .terms-check input {
    accent-color: var(--green);
    flex: 0 0 auto;
    height: 17px;
    margin-top: 2px;
    min-height: 0;
    padding: 0;
    width: 17px;
}

.auth-form .terms-check a {
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.auth-form button {
    background: var(--green);
    border: 0;
    border-radius: 10px;
    color: #06120b;
    cursor: pointer;
    font-weight: 800;
    min-height: 42px;
}

.auth-demo {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding-top: 16px;
}

.auth-demo strong {
    color: var(--text);
}

.auth-demo a {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.compact-demo {
    margin-top: 10px;
}

.account-card {
    max-width: 520px;
}

.upgrade-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
}

.pricing-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    margin-bottom: 16px;
}

.public-pricing-hero {
    max-width: 1240px;
}

.public-pricing-grid {
    margin-top: 24px;
}

.upgrade-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    padding: 22px;
}

.upgrade-card.featured {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.14), rgba(77, 163, 255, 0.08)),
        var(--panel);
}

.upgrade-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.upgrade-card p {
    color: var(--muted);
    line-height: 1.5;
}

.upgrade-price {
    color: var(--green) !important;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.saving {
    background: rgba(48, 224, 112, 0.12);
    border: 1px solid rgba(48, 224, 112, 0.28);
    border-radius: 999px;
    color: var(--green) !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-self: start;
    margin-bottom: 8px;
    padding: 6px 9px;
}

.saving.neutral {
    background: rgba(169, 182, 200, 0.1);
    border-color: var(--line);
    color: var(--muted) !important;
}

.upgrade-action {
    background: var(--green);
    border-radius: 10px;
    color: #06120b;
    display: inline-flex;
    font-weight: 800;
    margin-top: 18px;
    padding: 12px 14px;
    text-decoration: none;
}

.secondary-upgrade {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
}

.benefits-grid {
    grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.75fr);
}

.benefit-list {
    color: var(--text);
    display: grid;
    gap: 10px;
    list-style: none;
}

.benefit-list li {
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.benefit-list li::before {
    color: var(--green);
    content: "✓";
    font-weight: 800;
    margin-right: 8px;
}

.plan-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
    margin-bottom: 16px;
}

.plan-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.plan-card.destaque {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.13), rgba(77, 163, 255, 0.06)),
        var(--panel);
}

.plan-card h2 {
    font-size: 30px;
}

.plan-card span {
    color: var(--muted);
    font-size: 13px;
}

.plan-card strong {
    color: var(--text);
    font-size: 22px;
}

.plan-status {
    color: var(--green);
    font-weight: 800;
}

.plan-history {
    margin-top: 4px;
}

.trial-card {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.12), rgba(77, 163, 255, 0.08)),
        var(--panel);
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 14px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 20px;
}

.trial-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.trial-card p {
    color: var(--muted);
    line-height: 1.5;
}

.trial-card form {
    flex: 0 0 auto;
}

.entries-page {
    background:
        radial-gradient(circle at 18% 7%, rgba(48, 224, 112, 0.08), transparent 26%),
        radial-gradient(circle at 78% 14%, rgba(77, 163, 255, 0.08), transparent 28%);
}

.entries-shell {
    background:
        radial-gradient(circle at 72% 0%, rgba(48, 224, 112, 0.07), transparent 26%),
        radial-gradient(circle at 42% 16%, rgba(77, 163, 255, 0.08), transparent 25%),
        #050b14;
}

.entries-sidebar {
    background:
        linear-gradient(180deg, rgba(8, 20, 34, 0.98), rgba(4, 12, 20, 0.98));
}

.vip-side-card {
    background:
        linear-gradient(180deg, rgba(48, 224, 112, 0.1), rgba(77, 163, 255, 0.035)),
        rgba(5, 17, 27, 0.92);
    border: 1px solid rgba(48, 224, 112, 0.18);
    border-radius: 14px;
    display: grid;
    gap: 9px;
    margin-top: auto;
    padding: 18px;
    text-align: center;
}

.vip-gem {
    color: var(--green);
    font-size: 42px;
    line-height: 1;
    text-shadow: 0 0 28px rgba(48, 224, 112, 0.52);
}

.vip-side-card strong {
    color: var(--green);
    text-transform: uppercase;
}

.vip-side-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.vip-side-card a {
    background: rgba(48, 224, 112, 0.1);
    border: 1px solid rgba(48, 224, 112, 0.26);
    color: var(--green);
    justify-content: center;
}

.pro-entries-page {
    padding-top: 18px;
}

.entries-topbar {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.entries-title-line {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.entries-title-line h1 {
    font-size: 31px;
}

.entries-title-line span,
.entries-help-pill {
    background: rgba(48, 224, 112, 0.1);
    border: 1px solid rgba(48, 224, 112, 0.22);
    border-radius: 999px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
}

.entries-topbar p {
    color: var(--muted);
    margin-top: 6px;
}

.entries-help-pill {
    background: rgba(77, 163, 255, 0.08);
    border-color: rgba(77, 163, 255, 0.18);
    color: #78c3ff;
}

.entries-hero {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.14), rgba(77, 163, 255, 0.08)),
        var(--panel);
    border: 1px solid rgba(48, 224, 112, 0.22);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    overflow: hidden;
    padding: 28px;
    position: relative;
}

.entries-hero::after,
.mirror-button::before,
.entry-method-card::after {
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    content: "";
    height: 160%;
    left: -120%;
    position: absolute;
    top: -30%;
    transform: rotate(14deg);
    width: 42%;
}

.entries-hero:hover::after,
.mirror-button:hover::before,
.entry-method-card:hover::after {
    left: 130%;
    transition: left 0.75s ease;
}

.entries-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.entries-hero p {
    color: var(--muted);
    line-height: 1.5;
    margin-top: 8px;
    max-width: 780px;
}

.mirror-button {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.95), rgba(99, 235, 255, 0.82));
    border: 0;
    border-radius: 12px;
    box-shadow:
        0 14px 45px rgba(48, 224, 112, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.46);
    color: #04100a;
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 42px;
    overflow: hidden;
    padding: 12px 16px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.mirror-button.compact {
    min-height: 36px;
    padding: 9px 13px;
}

.entries-feedback {
    border-radius: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    padding: 14px 16px;
}

.entries-feedback.success {
    background: rgba(48, 224, 112, 0.1);
    border: 1px solid rgba(48, 224, 112, 0.28);
    color: var(--green);
}

.entries-feedback.warning {
    background: rgba(255, 196, 87, 0.1);
    border: 1px solid rgba(255, 196, 87, 0.34);
    color: #ffd37a;
}

.entries-method-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(6, minmax(142px, 1fr));
    margin-bottom: 12px;
}

.pro-method-grid {
    grid-template-columns: repeat(6, minmax(138px, 1fr));
}

.entry-method-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        linear-gradient(135deg, var(--method-soft), rgba(16, 26, 40, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--method-color);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    color: var(--text);
    display: grid;
    gap: 6px;
    min-height: 118px;
    overflow: hidden;
    padding: 12px;
    position: relative;
    text-decoration: none;
}

.entry-method-card em {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    margin-top: 0;
    padding-top: 7px;
}

.entry-method-card.active em {
    color: var(--green);
}

.entry-method-icon {
    align-items: center;
    background: rgba(5, 11, 20, 0.5);
    border: 1px solid var(--method-line);
    border-radius: 10px;
    color: var(--method-color);
    display: flex;
    font-size: 12px;
    font-weight: 900;
    height: 27px;
    justify-content: center;
    width: 32px;
}

.entry-method-circuit {
    border-top: 1px solid var(--method-line);
    height: 1px;
    opacity: 0.45;
    position: absolute;
    right: 12px;
    top: 24px;
    width: 58px;
}

.entry-method-circuit::before,
.entry-method-circuit::after {
    background: var(--method-color);
    border-radius: 999px;
    box-shadow: 0 0 14px var(--method-color);
    content: "";
    height: 6px;
    position: absolute;
    top: -3px;
    width: 6px;
}

.entry-method-circuit::before {
    left: 0;
}

.entry-method-circuit::after {
    right: 0;
}

.entry-method-card.active {
    border-color: var(--method-line);
    box-shadow:
        0 18px 70px rgba(0, 0, 0, 0.24),
        0 0 0 1px var(--method-line),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.entry-card-glow {
    background: radial-gradient(circle, var(--method-color), transparent 62%);
    filter: blur(18px);
    height: 70px;
    opacity: 0.18;
    position: absolute;
    right: -20px;
    top: -22px;
    width: 90px;
}

.entry-method-card strong {
    font-size: 16px;
    line-height: 1.12;
    position: relative;
    z-index: 2;
}

.entry-method-card small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
}

.entry-card-metrics {
    display: grid;
    gap: 6px;
    align-items: end;
    grid-template-columns: 1fr auto;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.entry-card-metrics div {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.entry-card-metrics b,
.entry-card-metrics span {
    display: block;
}

.entry-card-metrics b {
    color: var(--method-color);
    font-size: 20px;
}

.entry-card-metrics span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.entry-ring {
    align-items: center;
    background:
        radial-gradient(circle at center, rgba(5, 11, 20, 0.95) 55%, transparent 57%),
        conic-gradient(var(--method-color), rgba(255, 255, 255, 0.08));
    border-radius: 999px;
    display: flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.entry-ring b {
    font-size: 11px;
}

.entries-board {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
    margin-bottom: 14px;
}

.pro-table-panel {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(90deg, rgba(77, 163, 255, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(77, 163, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        rgba(8, 20, 34, 0.86);
    background-size: auto, 34px 34px, 34px 34px, auto, auto;
    border-color: rgba(77, 163, 255, 0.13);
    overflow: hidden;
    padding: 12px;
    position: relative;
}

.pro-table-panel::after {
    background: linear-gradient(90deg, transparent, rgba(48, 224, 112, 0.18), transparent);
    content: "";
    height: 1px;
    left: 18px;
    opacity: 0.7;
    position: absolute;
    right: 18px;
    top: 0;
}

.pro-table-panel header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 9px;
    position: relative;
    z-index: 1;
}

.pro-table-panel header h2 {
    font-size: 19px;
}

.pro-table-panel header span {
    color: var(--muted);
    font-size: 12px;
}

.panel-signal {
    background:
        radial-gradient(circle, var(--green) 0 3px, transparent 4px),
        linear-gradient(90deg, transparent 0 7px, rgba(48, 224, 112, 0.6) 7px 36px, transparent 36px),
        radial-gradient(circle, rgba(48, 224, 112, 0.55) 0 3px, transparent 4px);
    background-position: left center, center, right center;
    background-repeat: no-repeat;
    background-size: 8px 8px, 44px 1px, 8px 8px;
    display: inline-block;
    height: 18px;
    opacity: 0.8;
    width: 62px;
}

.panel-signal.blue {
    filter: hue-rotate(72deg);
}

.entries-table-wrap {
    border-radius: 12px;
    max-height: 390px;
    overflow: auto;
    position: relative;
    z-index: 1;
}

.entries-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.games-entry-table {
    min-width: 650px;
}

.history-entry-table {
    min-width: 760px;
}

.entries-table th {
    background: rgba(5, 11, 20, 0.88);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.02em;
    position: sticky;
    text-transform: uppercase;
    top: 0;
    z-index: 2;
}

.entries-table th > span {
    display: block;
    margin-bottom: 6px;
}

.entry-sort-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    gap: 5px;
    margin: 0 0 6px;
    padding: 0;
    text-align: left;
    text-transform: inherit;
}

.entry-sort-button:hover,
.entry-sort-button.active {
    color: var(--green);
}

.table-head-filter {
    background: rgba(7, 17, 29, 0.92);
    border: 1px solid rgba(77, 163, 255, 0.24);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-size: 11px;
    min-height: 28px;
    outline: none;
    padding: 5px 7px;
    text-transform: none;
    width: 100%;
}

.table-head-filter.compact {
    max-width: 74px;
}

.table-head-filter.compact-date {
    max-width: 92px;
}

.table-head-filter:focus {
    border-color: rgba(48, 224, 112, 0.72);
    box-shadow: 0 0 0 2px rgba(48, 224, 112, 0.1);
}

.entries-table td,
.entries-table th {
    border-bottom: 1px solid rgba(38, 54, 74, 0.7);
    padding: 9px 10px;
    vertical-align: middle;
}

.entries-table td {
    color: var(--text);
    font-size: 13px;
}

.entries-table td strong,
.entries-table td small {
    display: block;
}

.entries-table td small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px;
}

.entry-prob {
    color: var(--green);
    font-weight: 900;
}

.entry-save-mini,
.entry-save-ghost {
    background: rgba(48, 224, 112, 0.12);
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 8px;
    color: var(--green);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 30px;
    padding: 7px 9px;
}

.entry-save-mini:hover,
.entry-save-ghost:hover {
    background: rgba(48, 224, 112, 0.2);
}

.entry-save-mini {
    white-space: nowrap;
}

.compact-snapshot {
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 8px;
    padding: 9px 10px;
}

.inline-entry-form {
    align-items: center;
    display: grid;
    gap: 7px;
    grid-template-columns: 70px 78px 105px minmax(140px, 1fr) auto auto;
}

.inline-entry-form input,
.inline-entry-form select,
.inline-entry-form textarea {
    background: #07111d;
    border: 1px solid #2c425d;
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-size: 12px;
    min-height: 32px;
    outline: none;
    padding: 7px 8px;
}

.inline-entry-form textarea {
    resize: vertical;
}

.entry-row-form {
    display: none;
}

.entry-odd-input,
.entry-stake-input,
.entry-status-select,
.entry-observation-input {
    background: rgba(7, 17, 29, 0.95);
    border: 1px solid rgba(44, 66, 93, 0.95);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-size: 12px;
    min-height: 30px;
    outline: none;
    padding: 6px 7px;
}

.entry-odd-input {
    width: 58px;
}

.entry-stake-input {
    width: 64px;
}

.entry-status-select {
    width: 88px;
}

.entry-observation-input {
    min-height: 30px;
    resize: vertical;
    width: 150px;
}

.entry-odd-input:focus,
.entry-stake-input:focus,
.entry-status-select:focus,
.entry-observation-input:focus {
    border-color: rgba(48, 224, 112, 0.68);
    box-shadow: 0 0 0 2px rgba(48, 224, 112, 0.1);
}

.entry-kebab-delete {
    background: rgba(255, 107, 124, 0.1);
    border: 1px solid rgba(255, 107, 124, 0.26);
    border-radius: 8px;
    color: #ff9aa6;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 30px;
    padding: 7px 9px;
}

.entries-summary-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        rgba(8, 20, 34, 0.9);
    border: 1px solid rgba(77, 163, 255, 0.13);
    border-radius: 16px;
    padding: 14px;
}

.entries-summary-shell > header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.entries-summary-shell h2 {
    font-size: 19px;
}

.entries-summary-shell header span {
    color: var(--muted);
    font-size: 12px;
}

.pro-summary-grid {
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    margin-bottom: 10px;
}

.pro-summary-grid article {
    min-height: 92px;
}

.pro-summary-grid small {
    color: var(--muted);
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.accuracy-card {
    border-color: rgba(255, 184, 0, 0.45) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 184, 0, 0.1);
}

.entries-summary-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    margin-bottom: 10px;
}

.entries-summary-grid article {
    background: rgba(16, 26, 40, 0.78);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.entries-summary-grid article.featured {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.18), rgba(77, 163, 255, 0.08)),
        var(--panel);
    border-color: rgba(48, 224, 112, 0.35);
}

.entries-summary-grid article.green strong { color: var(--green); }
.entries-summary-grid article.red strong { color: #ff6b7c; }
.entries-summary-grid article.pending strong { color: #ffd37a; }

.entries-summary-grid span,
.entries-summary-grid strong {
    display: block;
}

.entries-summary-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.entries-summary-grid strong {
    color: var(--text);
    font-size: 24px;
    margin-top: 5px;
}

.entries-calc-note {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 16px;
}

.entries-workspace {
    align-items: start;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
}

.entries-panel {
    background: rgba(16, 26, 40, 0.86);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.16);
    padding: 18px;
}

.entries-panel header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.entries-panel header h2 {
    font-size: 22px;
}

.entries-panel header > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.entries-game-list,
.entries-history-list {
    display: grid;
    gap: 12px;
}

.entry-game-card,
.saved-entry-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(5, 11, 20, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    display: grid;
    gap: 10px;
    padding: 15px;
}

.entry-game-card:hover,
.saved-entry-card:hover {
    border-color: rgba(48, 224, 112, 0.26);
}

.entry-game-top,
.saved-entry-main {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.entry-game-top span,
.saved-entry-main span,
.entry-game-card small,
.saved-entry-main small {
    color: var(--muted);
    font-size: 12px;
}

.entry-game-top b {
    color: var(--green);
    font-size: 13px;
}

.entry-game-card > strong,
.saved-entry-main strong {
    color: var(--text);
    font-size: 18px;
}

.entry-game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.entry-game-tags > span:not(.nivel) {
    background: rgba(77, 163, 255, 0.09);
    border: 1px solid rgba(77, 163, 255, 0.18);
    border-radius: 999px;
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    padding: 5px 8px;
}

.save-entry-button {
    justify-self: start;
    margin-top: 2px;
}

.snapshot-note {
    background: rgba(48, 224, 112, 0.07);
    border: 1px solid rgba(48, 224, 112, 0.22);
    border-radius: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 13px;
}

.snapshot-note strong {
    color: var(--green);
}

.saved-entry-snapshot {
    align-items: end;
    display: grid;
    gap: 5px;
    justify-items: end;
    min-width: 110px;
}

.saved-entry-snapshot b {
    color: var(--green);
    font-size: 22px;
}

.saved-entry-snapshot small {
    color: var(--muted);
}

.entry-edit-form {
    display: grid;
    gap: 10px;
    grid-template-columns: 0.7fr 0.7fr 0.85fr;
}

.entry-edit-form label {
    color: var(--muted);
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    text-transform: uppercase;
}

.entry-edit-form input,
.entry-edit-form select,
.entry-edit-form textarea {
    background: #07111d;
    border: 1px solid #2c425d;
    border-radius: 10px;
    color: var(--text);
    font: inherit;
    min-height: 38px;
    outline: none;
    padding: 9px 10px;
}

.entry-edit-form textarea {
    min-height: 72px;
    resize: vertical;
}

.entry-edit-form input:focus,
.entry-edit-form select:focus,
.entry-edit-form textarea:focus {
    border-color: var(--green);
}

.entry-observation {
    grid-column: 1 / -1;
}

.entry-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    grid-column: 1 / -1;
}

.entry-save-state {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.entry-save-state.saving {
    color: #ffd37a;
}

.entry-save-state.saved {
    color: var(--green);
}

.entry-save-state.error {
    color: #ff6b7c;
}

.delete-entry-button {
    background: rgba(255, 107, 124, 0.08);
    border: 1px solid rgba(255, 107, 124, 0.28);
    border-radius: 10px;
    color: #ff9aa6;
    cursor: pointer;
    font-weight: 900;
    min-height: 38px;
    padding: 9px 12px;
}

.delete-entry-button:hover {
    background: rgba(255, 107, 124, 0.16);
}

.admin-panel {
    margin-bottom: 16px;
}

.admin-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.admin-filter-chip {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    display: inline-flex;
    gap: 8px;
    padding: 9px 12px;
    text-decoration: none;
}

.admin-filter-chip strong {
    color: var(--green);
}

.admin-filter-chip.active,
.admin-filter-chip:hover {
    border-color: rgba(48, 224, 112, 0.45);
    background: rgba(48, 224, 112, 0.09);
}

.admin-inline-form {
    align-items: center;
    display: flex;
    gap: 8px;
    min-width: 190px;
}

.admin-inline-form input {
    background: var(--side);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    max-width: 120px;
    min-height: 34px;
    padding: 8px;
}

.admin-inline-form button {
    background: var(--green);
    border: 0;
    border-radius: 8px;
    color: #06120b;
    cursor: pointer;
    font-weight: 800;
    min-height: 34px;
    padding: 8px 10px;
}

.inline-empty {
    margin: 0;
}

.vip-thanks {
    background:
        linear-gradient(135deg, rgba(48, 224, 112, 0.14), rgba(77, 163, 255, 0.08)),
        var(--panel);
    border: 1px solid rgba(48, 224, 112, 0.28);
    border-radius: 14px;
    margin-bottom: 16px;
    padding: 20px;
}

.vip-thanks h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.vip-thanks p {
    color: var(--muted);
    line-height: 1.5;
}

.hero {
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(48, 224, 112, 0.11), rgba(77, 163, 255, 0.06)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    min-height: 150px;
    padding: 28px;
}

.hero.compact {
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    gap: 18px;
}

.eyebrow {
    color: var(--green);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

h1 {
    font-size: 34px;
    line-height: 1.1;
}

.hero p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 700px;
}

.method-grid,
.region-switch {
    display: grid;
    gap: 12px;
}

.method-tile,
.region-option,
.filter-card,
.data-panel,
.empty-state,
.note,
.tabbar {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
}

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

.method-tile {
    border-top: 3px solid var(--method-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), inset 4px 0 0 var(--method-line);
    display: grid;
    gap: 16px;
    grid-template-rows: auto 1fr;
    min-height: 176px;
    padding: 18px;
}

.method-main {
    align-items: center;
    color: var(--text);
    display: flex;
    gap: 14px;
    text-decoration: none;
}

.method-main > span {
    display: grid;
    gap: 6px;
}

.method-main strong,
.method-main small {
    display: block;
}

.method-main strong {
    font-size: 23px;
    line-height: 1.1;
}

.method-main small,
.region-option p,
.data-panel header span {
    color: var(--muted);
}

.method-main small {
    font-size: 14px;
    line-height: 1.35;
}

.hero.compact h1 {
    font-size: clamp(32px, 4vw, 48px);
}

.hero.compact p {
    font-size: 16px;
    line-height: 1.45;
}

.method-code {
    background: #0a1523;
    border: 1px solid var(--method-line);
    color: var(--method-color);
    font-size: 14px;
    height: 54px;
    letter-spacing: 0.2px;
    min-width: 64px;
    width: 64px;
}

.method-regions {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-regions a {
    background: linear-gradient(90deg, var(--method-soft), transparent 65%), var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    padding: 11px;
    text-decoration: none;
}

.method-regions a:hover {
    border-color: var(--method-line);
}

.method-regions span,
.method-regions b {
    display: block;
}

.method-regions span {
    color: var(--muted);
    font-size: 13px;
}

.method-regions b {
    font-size: 22px;
    margin-top: 4px;
}

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

.region-option {
    border-left: 4px solid var(--method-line);
    padding: 20px;
}

.region-option header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.region-option header strong {
    font-size: 34px;
}

.region-option p {
    margin: 14px 0 18px;
}

.region-option b {
    color: var(--method-color);
    font-size: 22px;
}

.quick-links {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-links a,
.tabbar a {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #dbe5f2;
    padding: 12px;
    text-align: center;
    text-decoration: none;
}

.quick-links a.destaque,
.tabbar a.ativo {
    background: #133820;
    border-color: rgba(48, 224, 112, 0.5);
    color: var(--green);
    font-weight: 800;
}

.tabbar {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 14px;
    padding: 8px;
}

.filter-card {
    display: block;
    margin-bottom: 14px;
    padding: 14px;
}

.filter-main {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(220px, 1.4fr) repeat(auto-fit, minmax(135px, 0.75fr)) auto;
}

.filter-card label {
    color: var(--muted);
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
}

.filter-card input,
.filter-card select {
    background: #07111d;
    border: 1px solid #37506d;
    border-radius: 10px;
    color: var(--text);
    min-height: 38px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.filter-card input:focus,
.filter-card select:focus {
    border-color: var(--green);
}

.score-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
}

.score-filter input {
    border-radius: 10px 0 0 10px;
}

.score-filter select {
    border-left: 0;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    padding: 0 8px;
}

.filter-card button {
    align-self: end;
    background: #213044;
    border: 1px solid #40556f;
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    min-height: 38px;
    padding: 0 16px;
}

.advanced-filters {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding-top: 10px;
}

.advanced-filters summary {
    color: var(--green);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.advanced-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    margin-top: 10px;
}

.note {
    color: #cfe1ff;
    margin-bottom: 14px;
    padding: 12px 14px;
}

.filter-count {
    color: var(--muted);
    font-size: 13px;
    margin: -4px 0 12px;
    padding: 0 4px;
}

.filter-count strong {
    color: var(--green);
}

.data-panel {
    overflow: hidden;
}

.secondary-panel {
    margin-top: 14px;
}

.data-panel header {
    align-items: center;
    background: #0d1725;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 15px 16px;
}

.data-panel h2 {
    font-size: 17px;
}

.table-wrap {
    overflow: auto;
}

table {
    border-collapse: collapse;
    min-width: 900px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
    white-space: nowrap;
}

th {
    background: #0b1422;
    color: #b8c5d6;
    font-size: 12px;
    text-transform: uppercase;
}

.sort-header {
    align-items: center;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    gap: 6px;
    padding: 0;
    text-align: left;
    text-transform: inherit;
    white-space: nowrap;
}

.sort-header:hover,
.sort-header.active {
    color: var(--green);
}

.sort-arrow {
    color: var(--green);
    font-size: 11px;
    line-height: 1;
}

td {
    color: #ecf2fa;
    font-size: 14px;
}

tbody tr:hover td {
    background: #122033;
}

tr[hidden] {
    display: none;
}

.value {
    color: var(--green);
    font-size: 16px;
    font-weight: 800;
}

.preview-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 8px;
    border: 1px solid rgba(48, 224, 112, 0.32);
    border-radius: 999px;
    background: rgba(48, 224, 112, 0.08);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.table-link {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.table-link:hover {
    text-decoration: underline;
}

.favorite-form {
    display: inline-flex;
}

.favorite-button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    width: 38px;
}

.favorite-button:hover,
.favorite-button.active {
    border-color: rgba(255, 211, 77, 0.55);
    color: var(--yellow);
}

.favorite-actions {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.favorites-header-actions {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.favorites-header-actions form {
    margin: 0;
}

.favorite-remove {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--muted);
    cursor: pointer;
    font-weight: 800;
    padding: 7px 10px;
}

.favorite-remove:hover {
    border-color: rgba(255, 98, 98, 0.45);
    color: #ffd4d4;
}

.favorite-clear-all {
    background: rgba(255, 98, 98, 0.06);
    border: 1px solid rgba(255, 98, 98, 0.24);
    border-radius: 999px;
    color: #f0b5b5;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 11px;
}

.favorite-clear-all:hover {
    background: rgba(255, 98, 98, 0.11);
    border-color: rgba(255, 98, 98, 0.44);
    color: #ffd6d6;
}

.method-row {
    box-shadow: inset 4px 0 0 var(--method-line);
}

.method-row td:first-child {
    background: linear-gradient(90deg, var(--method-soft), transparent 72%);
}

tbody tr.method-row:hover td:first-child {
    background: linear-gradient(90deg, var(--method-soft), rgba(18, 32, 51, 0.88) 72%);
}

.method-pill {
    align-items: center;
    background: var(--method-soft);
    border: 1px solid var(--method-line);
    border-radius: 999px;
    color: var(--method-color);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    justify-content: center;
    margin-right: 8px;
    min-width: 42px;
    padding: 4px 7px;
}

.nivel {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    padding: 5px 9px;
}

.nivel.elite {
    background: rgba(255, 98, 98, 0.16);
    color: var(--red);
}

.nivel.top {
    background: rgba(166, 108, 255, 0.16);
    color: var(--purple);
}

.nivel.forte {
    background: rgba(255, 211, 77, 0.16);
    color: var(--yellow);
}

.nivel.bom {
    background: rgba(48, 224, 112, 0.15);
    color: var(--green);
}

.nivel.observacao {
    background: rgba(255, 138, 36, 0.16);
    color: var(--orange);
}

.nivel.acompanhar {
    background: rgba(77, 163, 255, 0.16);
    color: var(--blue);
}

.empty-state {
    padding: 28px;
}

.empty-state p {
    color: var(--muted);
    margin-top: 8px;
}

.assistant-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    gap: 16px;
    padding: 18px;
}

.assistant-limit {
    align-items: center;
    background: linear-gradient(90deg, rgba(48, 224, 112, 0.12), rgba(77, 163, 255, 0.06));
    border: 1px solid rgba(48, 224, 112, 0.24);
    border-radius: 12px;
    display: inline-flex;
    gap: 10px;
    justify-self: start;
    padding: 11px 13px;
}

.assistant-limit strong {
    color: var(--green);
    font-size: 24px;
}

.assistant-limit span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.assistant-form {
    display: grid;
    gap: 10px;
}

.assistant-form label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.assistant-form textarea {
    background: #07111d;
    border: 1px solid #37506d;
    border-radius: 12px;
    color: var(--text);
    font: inherit;
    min-height: 120px;
    outline: none;
    padding: 13px;
    resize: vertical;
    width: 100%;
}

.assistant-form textarea:focus {
    border-color: var(--green);
}

.assistant-form button {
    background: var(--green);
    border: 0;
    border-radius: 10px;
    color: #06120b;
    cursor: pointer;
    font-weight: 900;
    justify-self: start;
    min-height: 40px;
    padding: 0 18px;
}

.assistant-answer,
.assistant-examples {
    background: rgba(5, 11, 20, 0.54);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.assistant-answer span {
    color: var(--green);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.assistant-answer p,
.assistant-examples p {
    color: var(--text);
    line-height: 1.5;
}

.assistant-examples {
    display: grid;
    gap: 8px;
}

.assistant-examples strong {
    color: var(--green);
}

.assistant-examples p {
    color: var(--muted);
}

.verde {
    --method-color: var(--green);
    --method-soft: rgba(48, 224, 112, 0.11);
    --method-line: rgba(48, 224, 112, 0.34);
    color: var(--green);
}

.verde-claro {
    --method-color: #78f29c;
    --method-soft: rgba(120, 242, 156, 0.1);
    --method-line: rgba(120, 242, 156, 0.32);
    color: #78f29c;
}

.azul {
    --method-color: var(--blue);
    --method-soft: rgba(77, 163, 255, 0.1);
    --method-line: rgba(77, 163, 255, 0.32);
    color: var(--blue);
}

.laranja {
    --method-color: var(--orange);
    --method-soft: rgba(255, 138, 36, 0.1);
    --method-line: rgba(255, 138, 36, 0.32);
    color: var(--orange);
}

.roxo {
    --method-color: var(--purple);
    --method-soft: rgba(166, 108, 255, 0.1);
    --method-line: rgba(166, 108, 255, 0.32);
    color: var(--purple);
}

.amarelo {
    --method-color: var(--yellow);
    --method-soft: rgba(255, 211, 77, 0.1);
    --method-line: rgba(255, 211, 77, 0.32);
    color: var(--yellow);
}

@media (max-width: 1180px) {
    .public-model-grid,
    .benefit-grid,
    .vip-public-grid,
    .access-preview-grid,
    .entries-method-grid,
    .entries-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .entries-workspace,
    .entries-board {
        grid-template-columns: 1fr;
    }

    .pro-method-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }

    .pro-summary-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

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

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

    .filter-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 840px) {
    body {
        display: block;
    }

    .public-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-header nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        width: 100%;
    }

    .public-hero,
    .ai-hero,
    .split-section {
        grid-template-columns: 1fr;
    }

    .proof-strip,
    .hero-access-cards {
        max-width: none;
    }

    .entries-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .entries-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-hero {
        min-height: auto;
        padding-top: 34px;
    }

    .public-logo-panel {
        min-height: 300px;
    }

    .ai-visual {
        min-height: 380px;
    }

    .neural-image {
        min-height: 260px;
    }

    .sidebar {
        min-height: auto;
        position: static;
        width: 100%;
    }

    .brand {
        border-bottom: 0;
        padding-bottom: 0;
    }

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

    .user-box span,
    .user-box strong {
        grid-column: 1 / -1;
    }

    .content {
        padding: 14px;
    }

    .hero {
        border-radius: 12px;
        margin-bottom: 14px;
        min-height: auto;
        padding: 18px;
    }

    h1 {
        font-size: 26px;
    }

    .sidebar nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .sidebar a {
        flex: 0 0 auto;
        min-width: 118px;
        padding: 9px 10px;
        text-align: center;
    }

    .method-grid,
    .region-switch,
    .quick-links,
    .tabbar,
    .filter-main,
    .advanced-grid,
    .entries-method-grid,
    .entries-summary-grid {
        grid-template-columns: 1fr;
    }

    .entries-workspace,
    .entries-board,
    .pro-method-grid,
    .pro-summary-grid {
        grid-template-columns: 1fr;
    }

    .inline-entry-form {
        grid-template-columns: 1fr;
    }

    .method-tile,
    .region-option,
    .filter-card,
    .data-panel,
    .entries-panel,
    .tabbar {
        border-radius: 12px;
    }

    .filter-card button {
        width: 100%;
    }

    .score-filter {
        grid-template-columns: minmax(0, 1fr) 48px;
    }

    .data-panel header {
        position: sticky;
        top: 0;
        z-index: 2;
    }

    table {
        min-width: 760px;
    }
}

@media (max-width: 520px) {
    .public-header {
        padding: 12px;
    }

    .public-header nav a {
        padding: 8px 10px;
    }

    .public-hero,
    .public-section,
    .public-warning {
        padding-left: 12px;
        padding-right: 12px;
    }

    .public-hero h1 {
        font-size: 42px;
    }

    .public-model-grid,
    .benefit-grid,
    .vip-public-grid,
    .access-preview-grid,
    .hero-access-cards,
    .proof-strip,
    .best-game-list,
    .entries-method-grid,
    .entries-summary-grid {
        grid-template-columns: 1fr;
    }

    .entries-hero,
    .entries-panel {
        padding: 16px;
    }

    .entries-hero h1 {
        font-size: 38px;
    }

    .entry-game-top,
    .saved-entry-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .saved-entry-snapshot {
        align-items: flex-start;
        justify-items: start;
    }

    .entry-edit-form {
        grid-template-columns: 1fr;
    }

    .entry-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .entry-actions .mirror-button,
    .delete-entry-button {
        width: 100%;
    }

    .public-model-card {
        align-items: flex-start;
    }

    .ai-stats {
        grid-template-columns: 1fr;
    }

    .main-ai-card {
        margin-left: 0;
        max-width: none;
    }

    .public-actions {
        flex-direction: column;
    }

    .primary-action,
    .secondary-public-action {
        text-align: center;
    }

    .brand {
        justify-content: center;
    }

    .sidebar {
        padding: 16px 12px;
    }

    .content {
        padding: 10px;
    }

    .method-main {
        align-items: flex-start;
    }

    .method-code {
        height: 46px;
        min-width: 54px;
        width: 54px;
    }

    .method-tile {
        gap: 12px;
        min-height: auto;
        padding: 14px;
    }

    .method-regions {
        grid-template-columns: 1fr;
    }

    .hero.compact {
        align-items: flex-start;
    }

    .data-panel header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.45;
    }

    .tabbar {
        display: flex;
        overflow-x: auto;
    }

    .tabbar a {
        flex: 0 0 auto;
        min-width: 142px;
    }

    .filter-main,
    .advanced-grid {
        gap: 9px;
    }

    table.mobile-cards {
        border-collapse: separate;
        border-spacing: 0 10px;
        min-width: 0;
    }

    .table-wrap:has(table.mobile-cards) {
        overflow: visible;
    }

    table.mobile-cards thead {
        display: none;
    }

    table.mobile-cards tbody,
    table.mobile-cards tr,
    table.mobile-cards td {
        display: block;
        width: 100%;
    }

    table.mobile-cards tr {
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 12px;
        overflow: hidden;
    }

    table.mobile-cards tr.method-row {
        box-shadow: inset 4px 0 0 var(--method-line);
    }

    table.mobile-cards td {
        align-items: center;
        border-bottom: 1px solid rgba(38, 54, 74, 0.72);
        display: flex;
        justify-content: space-between;
        min-height: 40px;
        padding: 10px 12px 10px 16px;
        white-space: normal;
    }

    table.mobile-cards td:last-child {
        border-bottom: 0;
    }

    table.mobile-cards td::before {
        color: var(--muted);
        content: attr(data-label);
        flex: 0 0 108px;
        font-size: 11px;
        font-weight: 800;
        padding-right: 10px;
        text-transform: uppercase;
    }

    table.mobile-cards td[data-label="Liga"],
    table.mobile-cards td[data-label="Casa"],
    table.mobile-cards td[data-label="Visitante"],
    table.mobile-cards td[data-label="Método"] {
        align-items: flex-start;
    }

    table.mobile-cards td[data-label="Favorito"],
    table.mobile-cards td[data-label="Ação"] {
        justify-content: space-between;
    }

    table.mobile-cards .favorite-form,
    table.mobile-cards .favorite-actions {
        justify-content: flex-end;
    }

    .favorite-actions {
        flex-wrap: wrap;
    }

    th,
    td {
        padding: 10px 11px;
    }
}
