/* =============================================================
   Uğurlu Taşlar — Stylesheet
   Glassmorphism, gradient, hover & responsive
   ============================================================= */

:root {
  --bg-0: #0a0612;
  --bg-1: #1a0f2e;
  --bg-2: #2a1a4a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f1ff;
  --text-dim: #b8b0d4;
  --text-mute: #8a82a8;
  --primary: #b794f6;
  --primary-2: #f093fb;
  --primary-3: #4facfe;
  --gold: #ffd166;
  --danger: #ff5c8a;
  --success: #4ade80;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(183, 148, 246, 0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(183, 148, 246, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(79, 172, 254, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10, 6, 18, 0.55);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 6, 18, 0.85);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 8px 24px rgba(183, 148, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #1a0f2e;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Playfair Display', serif; font-size: 18px; }
.brand-text small { font-size: 11px; color: var(--text-mute); letter-spacing: 0.08em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 8px 0;
  transition: color 0.25s var(--ease);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}

.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.menu-toggle:hover { background: var(--surface-strong); transform: scale(1.05); }
.menu-toggle svg { width: 22px; height: 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-sm svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-lg svg { width: 20px; height: 20px; }

.btn-block { width: 100%; }

.btn-primary {
  color: #1a0f2e;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 10px 28px rgba(183, 148, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(183, 148, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--surface-strong);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero_01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: saturate(120%) contrast(110%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(183, 148, 246, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(10, 6, 18, 0.4) 0%, rgba(10, 6, 18, 0.85) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(183, 148, 246, 0.12);
  border: 1px solid rgba(183, 148, 246, 0.25);
  margin-bottom: 20px;
}

.eyebrow svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 540px;
}

.hero-stats li {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hero-stats li:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.hero-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-stats span {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease);
}

.hero-card:hover { transform: rotate(0deg) translateY(-6px); }

.hero-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-card:hover .hero-card-image img { transform: scale(1.06); }

.hero-card-body { padding: 24px; }

.hero-card-body h3 { font-size: 22px; margin-bottom: 8px; }
.hero-card-body p { font-size: 14px; margin-bottom: 18px; }

.bid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.bid-row small {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.bid-row strong {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.badge svg { width: 12px; height: 12px; }

.badge-live {
  background: rgba(255, 92, 138, 0.18);
  color: var(--danger);
  border: 1px solid rgba(255, 92, 138, 0.35);
  animation: pulse-live 2s ease-in-out infinite;
  position: static;
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 138, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 92, 138, 0); }
}

.badge-new { background: rgba(74, 222, 128, 0.15); color: var(--success); border: 1px solid rgba(74, 222, 128, 0.35); }
.badge-hot { background: rgba(255, 209, 102, 0.15); color: var(--gold); border: 1px solid rgba(255, 209, 102, 0.35); }
.badge-rare { background: rgba(79, 172, 254, 0.15); color: var(--primary-3); border: 1px solid rgba(79, 172, 254, 0.35); }

/* ===== Sections ===== */
.section { padding: 80px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
}

.section-head p { font-size: 17px; }

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(183, 148, 246, 0.2);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-media img { transform: scale(1.08); }

.product-body { padding: 20px; }

.product-body h3 {
  font-size: 19px;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.product-body p {
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 42px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-foot strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
}

/* ===== Live Section ===== */
.section-live { background: linear-gradient(180deg, transparent 0%, rgba(42, 26, 74, 0.3) 50%, transparent 100%); }

.live-card {
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.countdown {
  display: flex;
  gap: 12px;
}

.countdown div {
  text-align: center;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  min-width: 76px;
}

.countdown strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
}

.countdown span {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.live-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.live-stream {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.live-stream img { width: 100%; height: 100%; object-fit: cover; }

.live-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.3) 0%, rgba(10, 6, 18, 0.7) 100%);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.live-overlay:hover { background: linear-gradient(180deg, rgba(10, 6, 18, 0.5) 0%, rgba(10, 6, 18, 0.85) 100%); }

.live-overlay svg { width: 64px; height: 64px; color: var(--primary); }

.live-bids {
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.live-bids h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.live-bids h3 svg { width: 18px; height: 18px; color: var(--primary); }

.bid-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 320px;
}

.bid-feed li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 14px;
  animation: slideIn 0.4s var(--ease);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.bid-feed .who { color: var(--text-dim); }
.bid-feed .amount { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img { transform: scale(1.1); filter: brightness(1.15) saturate(120%); }

.gallery-item-tall { grid-row: span 2; }

/* ===== About ===== */
.section-about { background: linear-gradient(180deg, transparent 0%, rgba(42, 26, 74, 0.25) 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.about-media-2 { transform: translateY(40px); }

.about-content h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}

.check-list svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ===== CTA / Contact ===== */
.cta-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(183, 148, 246, 0.15) 0%, rgba(240, 147, 251, 0.1) 100%),
    var(--surface-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183, 148, 246, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.cta-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.info-item:hover { transform: translateX(4px); border-color: var(--primary); }

.info-item svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item small {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.info-item strong { font-size: 15px; color: var(--text); }

/* ===== Footer ===== */
.site-footer {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p { font-size: 14px; max-width: 320px; }

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

.footer-links a, .footer-links li {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 18, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s var(--ease);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.3s var(--ease);
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease);
}

.modal-close:hover { background: var(--surface-strong); }
.modal-close svg { width: 18px; height: 18px; }

.modal-dialog h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 6px;
}

.modal-dialog h3 svg { width: 22px; height: 22px; color: var(--primary); }

.modal-sub { font-size: 14px; margin-bottom: 24px; }

.bid-form { display: grid; gap: 14px; }

.bid-form label { display: grid; gap: 6px; }

.bid-form span {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.bid-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.bid-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(183, 148, 246, 0.2);
}

.bid-form input::placeholder { color: var(--text-mute); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform: rotate(0deg); max-width: 480px; margin: 0 auto; }
  .live-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .cta-card { grid-template-columns: 1fr; padding: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 14px 18px; }

  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .primary-nav.open { transform: translateY(0); opacity: 1; }

  .primary-nav a {
    padding: 14px 16px;
    border-radius: 10px;
    transition: background 0.25s var(--ease);
  }

  .primary-nav a:hover, .primary-nav a.active { background: var(--surface); }

  .menu-toggle { display: inline-flex; }

  .header-actions .btn span { display: none; }
  .header-actions .btn { padding: 9px 12px; }

  .hero { padding: 48px 0 64px; }
  .hero-title { font-size: clamp(32px, 8vw, 44px); }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stats li { padding: 12px 8px; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 10px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  .live-card { padding: 20px; }
  .live-head { flex-direction: column; align-items: flex-start; }
  .countdown { width: 100%; justify-content: space-between; }
  .countdown div { flex: 1; min-width: 0; padding: 10px 6px; }
  .countdown strong { font-size: 22px; }
  .countdown span { font-size: 9px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item-tall { grid-row: span 2; }

  .cta-card { padding: 28px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .modal-dialog { padding: 24px; }
}

@media (max-width: 480px) {
  .brand-text small { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-tall { grid-row: span 1; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats li:nth-child(3) { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
