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

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #040816;
    --bg-soft: #0a1124;
    --bg-elevated: #0f1830;
    --panel: rgba(9, 16, 34, 0.72);
    --panel-strong: rgba(11, 20, 40, 0.9);
    --panel-muted: rgba(16, 27, 52, 0.64);
    --cream: #d8e5ff;
    --cream-strong: #f5f9ff;
    --cream-soft: #90a5cd;
    --sand: #6d7db9;
    --coral: #89a4ff;
    --coral-dark: #4be1ff;
    --pink: #e370ff;
    --melon: #7cd7ff;
    --lime: #6ff3d5;
    --lime-dark: #1ab8a0;
    --green: #72ffd6;
    --green-soft: rgba(114, 255, 214, 0.14);
    --teal: #73d5ff;
    --mustard: #6a63ff;
    --ink: #edf3ff;
    --ink-soft: rgba(221, 233, 255, 0.74);
    --line: rgba(118, 147, 255, 0.16);
    --line-strong: rgba(112, 231, 255, 0.34);
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(115, 145, 255, 0.08);
    --shadow-lift: 0 36px 90px rgba(0, 0, 0, 0.48), 0 0 28px rgba(75, 225, 255, 0.14);
    --shadow-button: 0 18px 36px rgba(12, 16, 35, 0.48), 0 0 28px rgba(75, 225, 255, 0.2);
    --radius-lg: 36px;
    --radius-md: 26px;
    --radius-sm: 18px;
    --container-max-width: 1320px;
    --section-padding: 40px 0 52px;
    --font-primary: "Bahnschrift", "Segoe UI Variable", "Segoe UI", sans-serif;
    --font-display: "Bahnschrift", "Arial Black", "Segoe UI", sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 225, 255, 0.2), transparent 18%),
        radial-gradient(circle at 86% 12%, rgba(227, 112, 255, 0.16), transparent 18%),
        radial-gradient(circle at 78% 72%, rgba(111, 243, 213, 0.14), transparent 22%),
        radial-gradient(circle at 24% 78%, rgba(106, 99, 255, 0.18), transparent 22%),
        linear-gradient(180deg, #030611 0%, #07101f 28%, #081226 58%, #040917 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    filter: blur(6px);
}

body::before {
    top: 120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(75, 225, 255, 0.3) 0%, rgba(75, 225, 255, 0) 72%);
}

body::after {
    right: -120px;
    bottom: 80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(227, 112, 255, 0.2) 0%, rgba(227, 112, 255, 0) 72%);
}

body.is-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(100%, var(--container-max-width));
    margin: 0 auto;
    padding-inline: clamp(16px, 2.6vw, 24px);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 5, 14, 0.74);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(14px);
}

.modal-content {
    width: min(92vw, 420px);
    background: linear-gradient(180deg, rgba(11, 20, 40, 0.96) 0%, rgba(9, 17, 34, 0.98) 100%);
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    color: var(--ink);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(18px);
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 0.98;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.modal-content button {
    min-width: 132px;
    padding: 12px 20px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
}

#yesBtn {
    background: linear-gradient(135deg, rgba(75, 225, 255, 0.86) 0%, rgba(111, 243, 213, 0.88) 100%);
    color: #07111f;
    box-shadow: var(--shadow-button);
}

#yesBtn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(106, 236, 255, 0.98) 0%, rgba(138, 255, 225, 0.98) 100%);
}

#noBtn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
}

#noBtn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(227, 112, 255, 0.36);
}

/* ===== Warning ===== */
.warn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, rgba(106, 99, 255, 0.92) 0%, rgba(75, 225, 255, 0.88) 48%, rgba(227, 112, 255, 0.9) 100%);
    color: #f7fbff;
    text-align: center;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.24s ease, transform 0.24s ease;
    box-shadow: 0 10px 28px rgba(75, 225, 255, 0.16);
}

.warn.active {
    display: none;
}

.warn.is-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: var(--warn-height, 0px);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: top 0.24s ease, transform 0.24s ease;
}

body.is-scrolled .header,
body.is-menu-open .header {
    top: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 26px;
    background: linear-gradient(180deg, rgba(10, 18, 36, 0.84) 0%, rgba(8, 14, 28, 0.92) 100%);
    border: 1px solid rgba(116, 146, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 32px rgba(75, 225, 255, 0.08);
    backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(75, 225, 255, 0.12));
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a,
.mobile-nav a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 800;
}

.nav-desktop a {
    position: relative;
    color: var(--ink-soft);
    transition: color 0.24s ease, text-shadow 0.24s ease;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral-dark) 0%, var(--pink) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-desktop a:hover {
    color: var(--cream-strong);
    text-shadow: 0 0 18px rgba(75, 225, 255, 0.22);
}

.nav-desktop a:hover::after {
    transform: scaleX(1);
    box-shadow: 0 0 16px rgba(75, 225, 255, 0.4);
}

.btn-connect,
.btn-connect-mobile,
.btn-explore,
.btn-bid {
    border: 1px solid rgba(97, 242, 214, 0.26);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(75, 225, 255, 0.2) 0%, rgba(106, 99, 255, 0.24) 52%, rgba(227, 112, 255, 0.18) 100%);
    color: var(--cream-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    box-shadow: var(--shadow-button);
    backdrop-filter: blur(12px);
}

.btn-connect {
    padding: 14px 24px;
    min-width: 148px;
    font-size: 12px;
}

.btn-connect:hover,
.btn-connect-mobile:hover,
.btn-explore:hover,
.btn-bid:hover {
    transform: translateY(-3px);
    filter: saturate(1.08) brightness(1.04);
    border-color: rgba(75, 225, 255, 0.5);
    box-shadow: 0 20px 38px rgba(5, 9, 22, 0.42), 0 0 32px rgba(75, 225, 255, 0.24);
}

.btn-bid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    text-align: center;
    line-height: 1.2;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(116, 146, 255, 0.2);
    border-radius: 50%;
    background: rgba(12, 20, 39, 0.76);
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hamburger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--coral-dark);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: calc(var(--warn-height, 0px) + var(--header-height, 88px));
    right: 0;
    width: min(calc(100vw - 12px), 360px);
    height: calc(100vh - (var(--warn-height, 0px) + var(--header-height, 88px)));
    display: none;
    background: linear-gradient(180deg, rgba(8, 14, 29, 0.98) 0%, rgba(6, 11, 23, 0.98) 100%);
    border-left: 1px solid rgba(116, 146, 255, 0.18);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.34);
    transform: translateX(110%);
    transition: transform 0.28s ease;
    z-index: 999;
    backdrop-filter: blur(18px);
}

body.is-menu-open .mobile-menu {
    top: var(--header-height, 88px);
    height: calc(100vh - var(--header-height, 88px));
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px 36px;
}

.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(116, 146, 255, 0.14);
    color: var(--ink);
}

.btn-connect-mobile {
    width: 100%;
    padding: 14px 18px;
    margin-top: 10px;
    font-size: 13px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: calc(var(--warn-height, 0px) + var(--header-height, 88px) + 34px) 0 22px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(75, 225, 255, 0.14), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(227, 112, 255, 0.14), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 48px;
    align-items: center;
    min-height: 690px;
    padding: 54px 56px;
    border: 1px solid rgba(116, 146, 255, 0.18);
    border-radius: 38px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(11, 20, 40, 0.92) 0%, rgba(9, 16, 34, 0.88) 52%, rgba(14, 22, 42, 0.96) 100%);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(18px);
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(75, 225, 255, 0.18), transparent 22%),
        radial-gradient(circle at 82% 14%, rgba(227, 112, 255, 0.16), transparent 18%),
        radial-gradient(circle at 88% 74%, rgba(111, 243, 213, 0.16), transparent 20%);
    pointer-events: none;
}

.hero-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.12;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

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

.hero-left {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(46px, 5.2vw, 82px);
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--cream-strong);
    letter-spacing: 0.04em;
    text-shadow:
        0 0 28px rgba(75, 225, 255, 0.14),
        0 18px 44px rgba(0, 0, 0, 0.34);
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 46%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(75, 225, 255, 0.2));
}

.hero-description {
    margin-top: 18px;
    max-width: 470px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-buttons a {
    display: inline-flex;
    text-decoration: none;
}

.btn-explore,
.btn-create {
    min-width: 178px;
    padding: 16px 26px;
    font-size: 13px;
}

.btn-create {
    border: 1px solid rgba(75, 225, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-create:hover {
    transform: translateY(-3px);
    background: rgba(75, 225, 255, 0.1);
    border-color: rgba(75, 225, 255, 0.5);
    box-shadow: 0 0 24px rgba(75, 225, 255, 0.16);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-image-container {
    position: relative;
    width: min(100%, 560px);
    padding: 26px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 16%, rgba(75, 225, 255, 0.22), transparent 20%),
        radial-gradient(circle at 82% 22%, rgba(227, 112, 255, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(18, 32, 58, 0.94) 0%, rgba(10, 18, 37, 0.96) 44%, rgba(8, 13, 27, 0.98) 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46), 0 0 34px rgba(75, 225, 255, 0.12);
    border: 1px solid rgba(116, 146, 255, 0.22);
    overflow: hidden;
}

.hero-image-container::before,
.hero-image-container::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-image-container::before {
    width: 220px;
    height: 220px;
    right: -80px;
    top: -70px;
    background: radial-gradient(circle, rgba(75, 225, 255, 0.3) 0%, rgba(75, 225, 255, 0) 72%);
}

.hero-image-container::after {
    width: 160px;
    height: 160px;
    left: -50px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(227, 112, 255, 0.24) 0%, rgba(227, 112, 255, 0) 70%);
}

.hero-image-container img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.hero-tag {
    position: absolute;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(116, 146, 255, 0.22);
    background: rgba(10, 18, 35, 0.74);
    color: var(--cream-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
}

.tag-top-right {
    top: 18px;
    right: 18px;
}

.tag-middle {
    top: 46%;
    left: 18px;
}

.tag-bottom {
    bottom: 18px;
    right: 54px;
}

.countdown-grid {
    display: none;
}

/* ===== Flavor Strip ===== */
.flavor-strip {
    padding: 0 0 18px;
}

.flavor-strip-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(116, 146, 255, 0.18);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 20, 40, 0.76) 0%, rgba(9, 16, 34, 0.84) 100%);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.flavor-strip-track a {
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 13px;
    color: var(--ink-soft);
    border-right: 1px solid rgba(116, 146, 255, 0.14);
    transition: background-color 0.24s ease, color 0.24s ease, text-shadow 0.24s ease;
}

.flavor-strip-track a:last-child {
    border-right: 0;
}

.flavor-strip-track a:hover {
    background: rgba(75, 225, 255, 0.08);
    color: var(--cream-strong);
    text-shadow: 0 0 18px rgba(75, 225, 255, 0.2);
}

/* ===== Shared Sections ===== */
.highest-bid,
.explore-artwork,
.reviews,
.descriptions {
    position: relative;
    padding: var(--section-padding);
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream-strong);
    text-shadow: 0 0 24px rgba(75, 225, 255, 0.08);
    max-width: 100%;
}

.see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(116, 146, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream-strong);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 800;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    backdrop-filter: blur(14px);
}

.see-all:hover {
    transform: translateY(-2px);
    background: rgba(75, 225, 255, 0.1);
    border-color: rgba(75, 225, 255, 0.5);
    box-shadow: 0 0 22px rgba(75, 225, 255, 0.14);
}

.bid-grid,
.artwork-grid,
.desc-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

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

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

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

.bid-card,
.artwork-card,
.review-card,
.desc-item {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(116, 146, 255, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 36, 0.88) 0%, rgba(8, 14, 29, 0.94) 100%);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(16px);
}

.bid-card:hover,
.artwork-card:hover,
.review-card:hover,
.desc-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(75, 225, 255, 0.34);
}

.bid-card,
.artwork-card {
    padding: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bid-card::before,
.artwork-card::before {
    content: "";
    display: block;
    height: 14px;
    margin: -18px -18px 18px;
    background: linear-gradient(90deg, var(--coral-dark) 0%, var(--mustard) 30%, var(--pink) 64%, var(--lime) 100%);
}

.bid-image,
.artwork-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 22px;
    border: 1px solid rgba(116, 146, 255, 0.16);
    background:
        radial-gradient(circle at 78% 18%, rgba(75, 225, 255, 0.18), transparent 18%),
        radial-gradient(circle at 18% 82%, rgba(227, 112, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(16, 28, 55, 0.98) 0%, rgba(11, 18, 35, 0.98) 100%);
}

.bid-image img,
.artwork-image img {
    display: block;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bid-card:hover .bid-image img,
.artwork-card:hover .artwork-image img {
    transform: translateY(-7px) scale(1.04);
}

.bid-info,
.artwork-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    flex: 1 1 auto;
    width: 100%;
}

.bid-card>a,
.artwork-card>a {
    display: block;
    width: 100%;
    margin-top: auto;
}

.bid-name,
.artwork-name {
    font-family: var(--font-display);
    font-size: clamp(24px, 2vw, 36px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bid-card:nth-child(4n + 1) .bid-name,
.artwork-card:nth-child(4n + 1) .artwork-name {
    color: var(--coral-dark);
}

.bid-card:nth-child(4n + 2) .bid-name,
.artwork-card:nth-child(4n + 2) .artwork-name {
    color: var(--coral);
}

.bid-card:nth-child(4n + 3) .bid-name,
.artwork-card:nth-child(4n + 3) .artwork-name {
    color: var(--lime);
}

.bid-card:nth-child(4n + 4) .bid-name,
.artwork-card:nth-child(4n + 4) .artwork-name {
    color: var(--pink);
}

.bid-price,
.artwork-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    width: 100%;
}

.eth-icon,
.price-eth {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(221, 233, 255, 0.56);
}

.price-amount {
    font-size: 17px;
    font-weight: 800;
    color: var(--lime);
}

.btn-favorite {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(111, 243, 213, 0.26);
    background: rgba(255, 255, 255, 0.05);
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: default;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-bid {
    width: 100%;
    padding: 15px 18px;
    font-size: 13px;
}

/* ===== Banner ===== */
.footer-banner {
    padding: 20px 0 14px;
}

.footer-banner-top {
    padding-top: calc(var(--warn-height, 0px) + var(--header-height, 88px) + 18px);
}

.footer-banner-picture {
    display: block;
    width: min(100%, var(--container-max-width));
    margin: 0 auto;
    padding: 0 24px;
}

.footer-banner-picture img {
    display: block;
    width: 100%;
    border-radius: 32px;
    border: 1px solid rgba(116, 146, 255, 0.18);
    box-shadow: var(--shadow-soft);
}

/* ===== Reviews ===== */
.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(116, 146, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--coral-dark);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
    backdrop-filter: blur(12px);
}

.slider-btn:hover {
    transform: translateY(-2px);
    background: rgba(75, 225, 255, 0.1);
    box-shadow: 0 0 18px rgba(75, 225, 255, 0.14);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.reviews {
    overflow-x: clip;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.review-card {
    min-width: calc((100% - 48px) / 3);
    padding: 22px;
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 16px;
    text-align: center;
}

.review-header img {
    width: 100%;
    height: 280px;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid rgba(116, 146, 255, 0.14);
}

.review-user h4 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--coral-dark);
}

.stars {
    margin-top: 8px;
    color: #ffcf63;
    font-size: 14px;
    letter-spacing: 0.18em;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.review-text strong {
    color: var(--lime);
}

/* ===== Description ===== */
.desc-item {
    padding: 26px;
}

.desc-item a {
    display: inline-block;
    margin-bottom: 14px;
    color: inherit;
    text-decoration: none;
}

.desc-item h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 0.96;
    text-transform: uppercase;
    color: var(--coral-dark);
}

.desc-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* ===== Footer ===== */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 42px;
    padding: 46px 70px 38px;
    background:
        radial-gradient(circle at 14% 12%, rgba(75, 225, 255, 0.16), transparent 16%),
        radial-gradient(circle at 92% 24%, rgba(227, 112, 255, 0.14), transparent 16%),
        linear-gradient(180deg, rgba(9, 17, 34, 0.96) 0%, rgba(5, 10, 23, 0.98) 100%);
    border-top: 1px solid rgba(116, 146, 255, 0.18);
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.28);
}

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

.social {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(116, 146, 255, 0.16);
}

.social > div:not(.footer-logo) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(116, 146, 255, 0.18);
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    backdrop-filter: blur(12px);
}

.social > div:not(.footer-logo):hover {
    transform: translateY(-2px);
    background: rgba(75, 225, 255, 0.08);
    border-color: rgba(75, 225, 255, 0.4);
    box-shadow: 0 0 20px rgba(75, 225, 255, 0.14);
}

.footer-logo {
    margin-right: auto;
}

.footer-logo img {
    width: 92px;
    height: auto;
    display: block;
}

footer svg {
    width: 22px;
    height: 22px;
    fill: var(--coral-dark);
}

.footer-cont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 42px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(116, 146, 255, 0.16);
    color: var(--ink);
}

.foot-cont-one {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}

.cont-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.cont-col a {
    color: var(--ink-soft);
    transition: color 0.24s ease, transform 0.24s ease;
}

.cont-col a:hover {
    color: var(--cream-strong);
    transform: translateX(2px);
}

.cont-col:first-child a:first-child,
.cont-col:nth-child(2) a:first-child {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ink);
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 240px;
}

.foot-cont-two div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--ink-soft);
}

.foot-cont-two a {
    color: inherit;
    text-decoration: none;
    transition: color 0.24s ease, text-shadow 0.24s ease;
}

.foot-cont-two a:hover {
    color: var(--cream-strong);
    text-shadow: 0 0 16px rgba(75, 225, 255, 0.18);
}

.contact-icon {
    width: 22px;
    height: 22px;
    fill: var(--coral-dark);
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city {
    width: 100%;
}

.city p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(116, 146, 255, 0.18);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    backdrop-filter: blur(12px);
}

.city p::after {
    content: "+";
    font-size: 18px;
    line-height: 1;
}

.city p:hover,
.city p.active {
    transform: translateY(-2px);
    background: rgba(75, 225, 255, 0.1);
    border-color: rgba(75, 225, 255, 0.4);
    box-shadow: 0 0 18px rgba(75, 225, 255, 0.12);
}

.city p.active::after {
    content: "-";
}

.foot-cont-three a {
    display: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(116, 146, 255, 0.16);
    font-size: 13px;
    color: var(--ink-soft);
}

.copyright {
    width: 100%;
    padding-top: 8px;
    text-align: center;
    font-size: 14px;
    color: rgba(221, 233, 255, 0.52);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
    }

    .hero-left {
        max-width: none;
    }

    .hero-right {
        justify-content: center;
    }

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

@media (max-width: 1024px) {
    .container,
    .footer-banner-picture {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-desktop,
    .btn-connect {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: calc(var(--warn-height, 0px) + var(--header-height, 88px) + 24px);
    }

    .hero-content {
        padding: 38px 34px;
    }

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

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

    .review-card {
        min-width: calc((100% - 24px) / 2);
    }

    footer {
        padding: 42px 34px 34px;
    }

    .footer-cont {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .warn {
        font-size: 10px;
        letter-spacing: 0.08em;
        padding-inline: 12px;
    }

    .header {
        padding: 10px 0;
    }

    .header-content {
        padding: 14px 18px;
        gap: 16px;
    }

    .logo img {
        width: 62px;
        height: 62px;
    }

    .hero-content {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(26px, 8vw, 36px);
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a,
    .btn-explore,
    .btn-create {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons a {
        display: block;
    }

    .hero-tag {
        display: none;
    }

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

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

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: 0.04em;
    }

    .bid-grid,
    .artwork-grid,
    .desc-grid {
        grid-template-columns: 1fr;
    }

    .bid-image,
    .artwork-image {
        min-height: 220px;
    }

    .review-card {
        min-width: 100%;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        padding: 18px;
    }

    .review-header img {
        height: 240px;
    }

    .social {
        flex-wrap: wrap;
    }

    .footer-logo {
        width: 100%;
        margin-right: 0;
    }

    .foot-cont-one {
        flex-direction: column;
        gap: 28px;
    }

    .foot-cont-two {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 24px 18px;
    }

    .header-content {
        padding: 12px 14px;
    }

    .logo img {
        width: 56px;
        height: 56px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-title {
        font-size: clamp(24px, 9vw, 32px);
    }

    .section-title {
        font-size: clamp(26px, 9.2vw, 34px);
        line-height: 0.98;
    }

    .btn-explore,
    .btn-create,
    .btn-bid,
    .btn-connect-mobile {
        padding-left: 16px;
        padding-right: 16px;
        min-height: 52px;
    }

    .flavor-strip-track {
        grid-template-columns: 1fr;
    }

    .flavor-strip-track a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .flavor-strip-track a:last-child {
        border-bottom: 0;
    }

    footer {
        padding: 38px 18px 30px;
        border-radius: 28px 28px 0 0;
    }
}

@media (max-width: 360px) {
    .hero-content {
        padding: 20px 14px;
    }

    .section-title {
        font-size: 25px;
        letter-spacing: 0.03em;
    }

    .see-all {
        width: 100%;
    }

    .mobile-menu {
        width: min(calc(100vw - 8px), 320px);
    }
}

/* ===== Legal Pages ===== */
.legal-section {
    padding: calc(var(--warn-height, 0px) + var(--header-height, 88px) + 34px) 0 60px;
}

.legal-card {
    padding: 42px 48px;
    border-radius: 32px;
    border: 1px solid rgba(116, 146, 255, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 36, 0.92) 0%, rgba(8, 14, 29, 0.96) 100%);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(18px);
    color: var(--ink);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--cream-strong);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

.legal-content h3 {
    font-size: 17px;
    margin-top: 22px;
    margin-bottom: 10px;
    color: var(--coral-dark);
}

.legal-content p,
.legal-content ul {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--coral-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-content a:hover {
    color: var(--pink);
}

@media (max-width: 768px) {
    .legal-card {
        padding: 28px 20px;
        border-radius: 24px;
    }
}

