:root {
    --bg: #07111f;
    --bg-soft: #0b1930;
    --panel: rgba(10, 22, 43, 0.86);
    --panel-2: rgba(13, 27, 52, 0.92);
    --border: rgba(130, 164, 255, 0.16);
    --text: #edf3ff;
    --muted: #b5c3df;
    --primary: #3f73ff;
    --primary-hover: #315fe1;
    --gold: #d7b36c;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(70, 110, 255, 0.12), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(65, 105, 225, 0.08), transparent 24%),
        linear-gradient(180deg, #06101d 0%, #040b16 100%);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent 18%, transparent 82%, rgba(255,255,255,0.02) 100%);
    opacity: 0.45;
    z-index: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 12, 24, 0.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(64, 110, 255, 0.18), rgba(255,255,255,0.02));
    color: var(--gold);
    box-shadow: var(--shadow);
    font-size: 1.15rem;
}

.brand__text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.05rem;
}

.brand__text span {
    color: var(--muted);
    opacity: 0.7;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.98rem;
    transition: color 0.18s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.site-main {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 44px 28px 80px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(64, 110, 255, 0.12);
    border: 1px solid var(--border);
    color: #98b3ff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
    min-height: 72vh;
    padding: 20px 0 40px;
}

.hero__content {
    max-width: 760px;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0 0 22px;
}

.hero__text {
    font-size: 1.26rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 700px;
    margin: 0 0 30px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 24px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1rem;
    transition: 0.18s ease;
}

.btn--primary {
    background: linear-gradient(180deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(130, 164, 255, 0.34);
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.meta-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.meta-card__label {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.meta-card strong {
    font-size: 1.2rem;
}

.hero__visual {
    display: flex;
    justify-content: flex-end;
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 640px;
    background: linear-gradient(180deg, rgba(15, 31, 58, 0.95), rgba(8, 17, 34, 0.98));
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-frame__media {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) brightness(0.82);
}

.hero-frame__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 10, 20, 0.72), rgba(5, 10, 20, 0.08) 50%, rgba(5,10,20,0.24)),
        linear-gradient(to right, rgba(36, 72, 160, 0.08), transparent 35%);
}

.hero-frame__caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    padding: 18px 20px;
    background: rgba(5, 12, 24, 0.62);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.hero-frame__caption-top {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hero-frame__caption strong {
    font-size: 1.35rem;
}

.page-hero {
    text-align: center;
    padding: 34px 0 18px;
}

.page-hero--narrow {
    max-width: 860px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin: 0 0 14px;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.section {
    margin-top: 44px;
}

.section__header {
    margin-bottom: 22px;
}

.section__eyebrow {
    display: inline-block;
    color: #94afff;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.section__header h2 {
    font-size: 2rem;
    margin: 0;
}

.feature-grid,
.link-grid,
.class-grid,
.archange-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card,
.link-card,
.class-card,
.archange-card,
.vote-box,
.cta-panel {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.feature-card,
.link-card,
.class-card,
.archange-card {
    padding: 28px;
}

.feature-card h3,
.link-card h3,
.class-card h2,
.archange-card h2,
.vote-box h2,
.cta-panel h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.feature-card p,
.link-card p,
.class-card p,
.archange-card p,
.cta-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.link-card,
.class-card,
.archange-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.link-card:hover,
.class-card:hover,
.archange-card:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 164, 255, 0.34);
}

.glow-hover-card:hover {
    box-shadow: 0 16px 46px rgba(80,120,255,0.18);
}

.link-card__tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #9db6ff;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.class-card__top,
.archange-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.class-card__emoji,
.archange-card__emoji {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}

.class-card__role,
.archange-card__type {
    display: inline-block;
    color: #9db6ff;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    background: rgba(5, 12, 24, 0.76);
}

.site-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-text {
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    font-weight: 600;
}

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

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

    .hero__visual {
        justify-content: center;
    }

    .hero-frame {
        max-width: 620px;
    }

    .hero__meta,
    .feature-grid,
    .link-grid,
    .class-grid,
    .archange-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        gap: 14px;
    }

    .hero__meta,
    .feature-grid,
    .link-grid,
    .class-grid,
    .archange-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-frame {
        min-height: 460px;
    }

    .hero-frame__media {
        min-height: 460px;
    }
}
/* ===== VOTE HERO FULL ===== */

.vote-top-actions {
    margin-bottom: 10px;
}

.vote-top-actions__inner {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.vote-hero {
    width: 100%;
    height: 85vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.vote-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.vote-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(20, 25, 40, 0.6);
    backdrop-filter: blur(12px);
    padding: 16px 22px;
    border-radius: 16px;
    color: white;
}
/* ===== VOTE BANNER FULL WIDTH ===== */

.vote-top-actions {
    margin-bottom: 18px;
}

.vote-top-actions__inner {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vote-banner {
    width: 100%;
    min-height: 78vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-image: url("/static/ains_lb.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vote-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 12, 24, 0.62), rgba(5, 12, 24, 0.12) 45%, rgba(5, 12, 24, 0.18)),
        linear-gradient(to right, rgba(36, 72, 160, 0.08), transparent 35%);
}

.vote-banner__overlay {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    background: rgba(20, 25, 40, 0.56);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 22px;
    border-radius: 18px;
    color: white;
}

.vote-banner__overlay span {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.vote-banner__overlay strong {
    font-size: 1.7rem;
    font-weight: 800;
}

.vote-banner:hover {
    box-shadow: 0 22px 60px rgba(80,120,255,0.18);
}

@media (max-width: 720px) {
    .vote-banner {
        min-height: 46vh;
    }

    .vote-banner__overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .vote-banner__overlay strong {
        font-size: 1.25rem;
    }
}
/* ===== CLASSES EXPANDABLE ===== */

.classes-accordion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.class-expand-card {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.class-expand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 164, 255, 0.34);
    box-shadow: 0 18px 50px rgba(80,120,255,0.16);
}

.class-expand-card[open] {
    border-color: rgba(130, 164, 255, 0.34);
    box-shadow: 0 18px 50px rgba(80,120,255,0.16);
}

.class-expand-summary {
    list-style: none;
    cursor: pointer;
    padding: 28px;
}

.class-expand-summary::-webkit-details-marker {
    display: none;
}

.class-expand-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.class-expand-emoji {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.class-expand-summary h2 {
    margin: 0 0 6px;
    font-size: 1.7rem;
}

.class-expand-role {
    display: inline-block;
    color: #9db6ff;
    font-size: 0.92rem;
    font-weight: 700;
}

.class-expand-summary p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.class-expand-body {
    padding: 0 28px 28px;
}

.stat-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.stat-chip {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.stat-chip span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 4px;
}

.stat-chip strong {
    font-size: 1.05rem;
    color: var(--text);
}

.class-extra-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

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

@media (max-width: 720px) {
    .classes-accordion-grid {
        grid-template-columns: 1fr;
    }

    .stat-chip-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== LOOKUP ===== */

.lookup-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lookup-form {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.lookup-form input {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: white;
}

.lookup-form button {
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
}

.lookup-gif {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.lookup-gif img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.7);
}

.lookup-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    border-radius: 10px;
}

/* ===== PODIUM ===== */

.leaderboard-podium {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.podium-card {
    background: var(--panel);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    width: 220px;
    position: relative;
}

.podium-card .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* ===== TABLE ===== */

.leaderboard-table {
    margin-top: 30px;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 120px 120px;
    padding: 12px;
    align-items: center;
}

.table-row {
    border-top: 1px solid var(--border);
}

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

.player img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
/* ===== LEADERBOARD REDESIGN ===== */

.leaderboard-hero {
    text-align: center;
    padding-top: 12px;
    padding-bottom: 20px;
}

.lb-server-id {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.leaderboard-wrap {
    margin-top: 18px;
}

.lb-empty {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 42px;
    text-align: center;
    box-shadow: var(--shadow);
}

.lb-empty h2 {
    margin: 0 0 12px;
    font-size: 2rem;
}

.lb-empty p {
    margin: 0;
    color: var(--muted);
}

.lb-podium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 36px;
}

.lb-podium-card {
    background: linear-gradient(180deg, rgba(12, 25, 49, 0.96), rgba(8, 17, 34, 0.99));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px 28px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lb-podium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(80, 120, 255, 0.18);
    border-color: rgba(130, 164, 255, 0.34);
}

.lb-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    font-weight: 900;
    font-size: 1.15rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
}

.lb-rank-1 .lb-rank-badge {
    color: #f1d36e;
}

.lb-rank-2 .lb-rank-badge {
    color: #dfe5f0;
}

.lb-rank-3 .lb-rank-badge {
    color: #cf9367;
}

.lb-player-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    text-decoration: none;
}

.lb-avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.lb-avatar--podium {
    width: 72px;
    height: 72px;
}

.lb-avatar--small {
    width: 38px;
    height: 38px;
}

.lb-avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
}

.lb-identity h2 {
    margin: 0 0 6px;
    font-size: 1.7rem;
    line-height: 1.08;
}

.lb-line {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.4;
}

.lb-line--guild {
    color: #9db6ff;
    font-weight: 700;
}

.lb-stat-chips {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lb-chip {
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text);
    font-weight: 800;
    font-size: 1rem;
}

.lb-table-card {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lb-table-head,
.lb-row {
    display: grid;
    grid-template-columns: 0.9fr 1.9fr 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 30px;
}

.lb-table-head {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.lb-row {
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: background 0.18s ease;
}

.lb-row:hover {
    background: rgba(255,255,255,0.025);
}

.lb-rank,
.lb-name {
    color: var(--text);
    font-weight: 800;
}

.lb-name-with-avatar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lb-guild {
    color: #9db6ff;
    font-weight: 700;
}

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

    .lb-table-head,
    .lb-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lb-table-head {
        display: none;
    }
}
/* ===== LOOKUP HERO CLEAN ===== */

.lookup-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 42px;
}

.lookup-left h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin: 0 0 18px;
    line-height: 1.04;
}

.lookup-left p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0 0 24px;
}

.lookup-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lookup-form input {
    flex: 1;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    color: var(--text);
    outline: none;
    font-size: 1rem;
}

.lookup-form input:focus {
    border-color: rgba(130, 164, 255, 0.38);
}

.lookup-form button {
    padding: 16px 24px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(180deg, var(--primary), var(--primary-hover));
    color: white;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.lookup-gif {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.lookup-gif img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
}

.lookup-overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(20,25,40,0.58);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px;
    border-radius: 16px;
    color: white;
}

.lookup-overlay span {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
}

.lookup-overlay strong {
    font-size: 1.35rem;
}

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

    .lookup-form {
        flex-direction: column;
        align-items: stretch;
    }
}
