:root {
    /* Shoponator-like palette */
    --bg: #07131f;
    --bg-deep: #0a1726;
    --bg-soft: #102235;

    --surface: #112538;
    --surface-2: #16324a;
    --surface-3: #1a3d5a;

    --text: #ffffff;
    --text-soft: #d8e7f5;
    --muted: #9fb5c8;

    --line: rgba(170, 210, 235, 0.14);
    --line-strong: rgba(170, 210, 235, 0.22);

    --accent: #59cfff;
    --accent-hover: #7cdeff;
    --accent-deep: #1ea7e1;

    --success: #67d8a5;
    --warning: #f5c65b;
    --danger: #ff7b7b;

    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.32);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.24);

    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;

    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(89, 207, 255, 0.10), transparent 25%),
        radial-gradient(circle at top right, rgba(89, 207, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #07131f 0%, #0a1726 46%, #09141f 100%);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(89, 207, 255, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.title {
    margin: 18px 0 14px;
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(7, 19, 31, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(170, 210, 235, 0.08);
}

.topbar__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 15px;
}

.nav a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 800;
    transition: .2s ease;
    cursor: pointer;
}

.btn--primary {
    color: #052033;
    background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
    box-shadow: 0 12px 28px rgba(89, 207, 255, 0.22);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(89, 207, 255, 0.28);
}

.btn--ghost {
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.hero {
    padding: 48px 0 64px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: stretch;
}

.hero__content,
.auction-card,
.card,
.info-panel,
.cta-block {
    border: 1px solid var(--line);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
            var(--surface);
    box-shadow: var(--shadow-lg);
}

.hero__content,
.auction-card,
.cta-block {
    border-radius: var(--radius-xl);
}

.card,
.info-panel {
    border-radius: var(--radius-lg);
}

.hero__content {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 80% 82%, rgba(89, 207, 255, 0.12), transparent 24%);
    pointer-events: none;
}

.hero__lead {
    margin: 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 19px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.auction-hero-fill {
    position: relative;
    width: 100%;
    margin-top: 28px;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #0b1624 0%, #0d1b2d 48%, #091320 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.auction-hero-fill__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.auction-hero-fill__content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* Glow background */
.auction-hero-fill__bg {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.auction-hero-fill__bg--blue {
    width: 340px;
    height: 340px;
    left: 30px;
    top: 20px;
    background: rgba(88, 209, 255, 0.22);
}

.auction-hero-fill__bg--violet {
    width: 260px;
    height: 260px;
    left: 160px;
    top: 150px;
    background: rgba(126, 98, 255, 0.16);
}

.auction-hero-fill__bg--orange {
    width: 220px;
    height: 220px;
    left: 70px;
    bottom: 24px;
    background: rgba(255, 158, 69, 0.14);
}

/* Floating particles */
.auction-particle {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 18px rgba(88, 209, 255, 0.18);
}

.auction-particle--1 {
    width: 8px;
    height: 8px;
    top: 48px;
    left: 210px;
}

.auction-particle--2 {
    width: 10px;
    height: 10px;
    top: 126px;
    left: 84px;
}

.auction-particle--3 {
    width: 6px;
    height: 6px;
    top: 210px;
    left: 280px;
}

.auction-particle--4 {
    width: 8px;
    height: 8px;
    bottom: 124px;
    left: 120px;
}

.auction-particle--5 {
    width: 6px;
    height: 6px;
    bottom: 56px;
    left: 248px;
}

.auction-particle--6 {
    width: 12px;
    height: 12px;
    top: 88px;
    left: 320px;
}

/* Chips */
.auction-hero-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(16, 27, 43, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    color: #ffffff;
}

.auction-hero-chip__icon {
    font-size: 16px;
    line-height: 1;
}

.auction-hero-chip__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.auction-hero-chip--top {
    top: 38px;
    left: 34px;
}

.auction-hero-chip--middle {
    top: 148px;
    left: 12px;
}

.auction-hero-chip--bottom {
    bottom: 34px;
    left: 72px;
}

/* Slight accent variations */
.auction-hero-chip--top {
    box-shadow: 0 14px 34px rgba(88, 209, 255, 0.10);
}

.auction-hero-chip--middle {
    box-shadow: 0 14px 34px rgba(255, 158, 69, 0.10);
}

.auction-hero-chip--bottom {
    box-shadow: 0 14px 34px rgba(126, 98, 255, 0.10);
}

/* Mobile */
@media (max-width: 991px) {
    .auction-hero-fill,
    .auction-hero-fill__inner,
    .auction-hero-fill__content {
        min-height: 320px;
    }

    .auction-hero-chip {
        padding: 12px 14px;
    }

    .auction-hero-chip__text {
        font-size: 13px;
    }

    .auction-hero-chip--top {
        top: 22px;
        left: 18px;
    }

    .auction-hero-chip--middle {
        top: 112px;
        left: 10px;
    }

    .auction-hero-chip--bottom {
        bottom: 22px;
        left: 34px;
    }

    .auction-hero-fill__bg--blue {
        width: 260px;
        height: 260px;
        left: 8px;
        top: 10px;
    }

    .auction-hero-fill__bg--violet {
        width: 180px;
        height: 180px;
        left: 110px;
        top: 120px;
    }

    .auction-hero-fill__bg--orange {
        width: 160px;
        height: 160px;
        left: 44px;
        bottom: 10px;
    }
}

@media (max-width: 640px) {
    .auction-hero-fill,
    .auction-hero-fill__inner,
    .auction-hero-fill__content {
        min-height: 260px;
    }

    .auction-hero-chip {
        padding: 10px 12px;
        border-radius: 14px;
    }

    .auction-hero-chip__icon {
        font-size: 14px;
    }

    .auction-hero-chip__text {
        font-size: 12px;
    }

    .auction-hero-chip--middle {
        top: 98px;
        left: 8px;
    }

    .auction-hero-chip--bottom {
        left: 18px;
        bottom: 18px;
    }
}

.stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(170, 210, 235, 0.10);
    box-shadow: var(--shadow-md);
}

.stat__value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.stat__label {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.auction-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auction-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--success);
    background: rgba(103, 216, 165, 0.12);
    border: 1px solid rgba(103, 216, 165, 0.24);
    font-size: 14px;
    font-weight: 800;
}

.badge-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(103, 216, 165, 0.10);
}

.auction-card__id {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
}

.auction-card__image {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(170, 210, 235, 0.12);
    background: rgba(255,255,255,0.02);
    align-content: center;
    text-align: center;
}

.auction-card__image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: inline-block;
}

.auction-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.auction-card__text {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.auction-card__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.meta-box {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(170, 210, 235, 0.10);
}

.meta-box__label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-box__timezone {
    font-size: 12px;
}

.meta-box__value {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.meta-box__value--accent {
    color: var(--accent);
}

.meta-box__value--success {
    color: var(--success);
}

.meta-box__value--warning {
    color: var(--warning);
}

.how-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.card {
    padding: 28px;
}

.card__num,
.card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(89, 207, 255, 0.10);
    border: 1px solid rgba(89, 207, 255, 0.18);
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
}

.card h3 {
    margin: 18px 0 10px;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 34px;
}

.info-panel {
    padding: 30px;
}

.info-panel h3 {
    margin: 0 0 12px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.info-panel p {
    margin: 0;
    color: var(--muted);
}

.trust-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.trust-list li {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(170, 210, 235, 0.10);
    color: var(--text-soft);
}

.highlight {
    margin-top: 20px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(89, 207, 255, 0.08);
    border: 1px solid rgba(89, 207, 255, 0.18);
}

.highlight__value {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.cta-block {
    text-align: center;
    padding: 42px;
    background:
            radial-gradient(circle at top center, rgba(89, 207, 255, 0.10), transparent 38%),
            linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
            var(--surface);
}

.cta-block h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -0.03em;
}

.cta-block p {
    margin: 0 auto 24px;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.footer-note {
    padding: 28px 0 50px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1080px) {
    .hero__grid,
    .split {
        grid-template-columns: 1fr;
    }

    .hero__stats,
    .how-grid,
    .benefits-grid,
    .auction-card__meta {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .hero__content,
    .auction-card,
    .card,
    .info-panel,
    .cta-block {
        padding: 22px;
    }

    .subtitle,
    .hero__lead,
    .cta-block p {
        font-size: 16px;
    }

    .auction-card__title {
        font-size: 24px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}