 
    /* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 50px; /* Space for navbar */
  margin-top: -5%;
}
 
/* Gold grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,155,42,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,155,42,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
 
/* Radial glow behind logo */
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse, #1E2329 0%, transparent 65%);
  pointer-events: none;
  animation: glowBreath 6s ease-in-out infinite;
}
@keyframes glowBreath {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
}
 
/* Scan line */
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,155,42,0.5) 30%, rgba(245,208,107,0.9) 50%, rgba(200,155,42,0.5) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(200,155,42,0.6), 0 0 40px rgba(200,155,42,0.2);
  animation: scanMove 5s linear infinite;
  pointer-events: none; z-index: 10;
}
@keyframes scanMove { from { top: -2px; } to { top: 100%; } }

/* Phone Accessibility */
@media (max-width: 768px) {
  .podium-container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 40px 20px 30px;
  }
  .collector-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 700px) {
  .features-container {
    flex-direction: column;
    gap: 16px;
    padding: 40px 5%;
  }
  .feature-box {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero-desc {
    font-size: 17px;
    padding: 0 8px;
  }
  .logo-ring {
    width: 110px;
    height: 110px;
    margin-top: 90px;
  }
}
 
/* Horizontal accent lines */
.h-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.h-line.top { top: 120px; }
.h-line.bottom { bottom: 120px; }
 
/* Vertical accent lines */
.v-line {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-line), transparent);
}
.v-line.left { left: 80px; }
.v-line.right { right: 80px; }
 
/* Corner marks */
.corner {
  position: absolute; width: 24px; height: 24px;
  border-color: #D4AF37; border-style: solid; border-width: 0;
  opacity: 0.6;
}
.corner.tl { top: 98px; left: 32px; border-top-width: 1px; border-left-width: 1px; }
.corner.tr { top: 98px; right: 32px; border-top-width: 1px; border-right-width: 1px; }
.corner.bl { bottom: 92px; left: 32px; border-bottom-width: 1px; border-left-width: 1px; }
.corner.br { bottom: 92px; right: 32px; border-bottom-width: 1px; border-right-width: 1px; }
 
/* Particles */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold-mid);
  pointer-events: none;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}
 
/* ── Content ── */
.hero-content {
  position: relative; z-index: 20;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 24px 100px;
}
 
.logo-ring {
  position: relative;
  width: 160px; height: 160px;
  margin-bottom: 50px;
  margin-top: 120px;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
}
.logo-ring::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(200,155,42,0.25);
  animation: ringPulse 3s ease-in-out infinite;
}
.logo-ring::after {
  content: '';
  position: absolute; inset: -28px;
  border-radius: 50%;
  border: 2px solid rgba(200,155,42,0.10);
  animation: ringPulse 3s ease-in-out 0.5s infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}
.logo-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 0 32px rgba(200,155,42,0.5));
}
  
h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  background: linear-gradient(180deg,
    #FFFFFF 0%,
    var(--gold-light) 25%,
    var(--gold-mid) 55%,
    var(--gold-dark) 80%,
    #4A3008 100%
  );
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}
 
.tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.5em;
  color: #F8F9FA;
  margin-top: 18px;
  opacity: 0; animation: fadeUp 0.8s ease 1.3s forwards;
}
 
.hero-desc {
  max-width: 480px;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  color: #F8F9FA;
  margin-top: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards;
}
 
.cta-row {
  display: flex; gap: 16px; margin-top: 44px;
  opacity: 0; animation: fadeUp 0.8s ease 1.7s forwards;
  flex-wrap: wrap; justify-content: center;
}
 
.btn-primary {
  position: relative; overflow: hidden;
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.22em;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 40%, var(--gold-light) 100%);
  color: #000;
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  cursor: none;
  transition: filter 0.3s;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { filter: brightness(1.15); }
.btn-primary:hover::after { opacity: 1; }
 
  
    /* ── Feature cards ── */

.features {
  position: relative; z-index: 10;
  padding: 100px 48px;
  background: #000;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  max-width: 1100px; margin: 0 auto;
  border: 2px solid #8B6A18;
  margin-top: -120px;
}
.feature-card {
  padding: 48px 36px;
  background: #1E2329;
  border: 2px solid #8B6A18;
  position: relative;
  transition: background 0.4s;
}
.feature-card::before {
  content: attr(data-num);
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cinzel', serif;
  font-size: 48px; font-weight: 900;
  color: #C89B2A;
  line-height: 1;
}
.feature-card:hover { background: rgba(200,155,42,0.45); }
.feature-icon {
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
  margin-bottom: 28px;
}
.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.feature-desc {
  font-family: 'Cinzel', serif;
  font-size: 18px; font-weight: 500;
  line-height: 1.7;
  color: #F8F9FA;
}
 
/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

 
    /* WHY COLLECTORS JOIN DEXORIA*/

/* 1. Setup the layout */
.features-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 60px 5%;
    background: black;
}

/* 2. Style the individual boxes */
.feature-box {
    flex: 1;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-family: 'Cinzel', serif;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    perspective: 1000px; /* Adds depth for 3D effects */
    z-index: 1;
    margin-top: -20px;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Start off-screen */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: all 0.6s ease;
    z-index: 2;
}

.feature-box:hover::before {
    left: 150%;
}

/* 2. The Corner Sparkles */
.sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: white;
    mask: radial-gradient(circle, #fff 10%, transparent 70%);
    -webkit-mask: radial-gradient(circle, #fff 10%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

/* Creating the 4-pointed star shape for the sparkle */
.sparkle::before, .sparkle::after {
    content: '';
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle::before { width: 100%; height: 2px; }
.sparkle::after { width: 2px; height: 100%; }

/* 3. The Specific Colors */
.blue  { background: linear-gradient(135deg, #0072ff, #00c6ff); 
order: 3;}
.green { background: linear-gradient(135deg, #11998e, #38ef7d);
order: 1; }
.red   { background: linear-gradient(135deg, #cb2d3e, #ef473a);
order: 2; }

.title-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 20px; font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold-mid);
    margin-bottom: 14px;
}

/* 5. The Icon Size */
.feature-icon, h3, p {
    position: relative;
    z-index: 3;
}

/* 4. The Hover Effect */
.feature-box:hover {
    transform: translateY(-10px) rotateX(8deg) rotateY(8deg);
    box-shadow: 
        -10px 10px 20px rgba(0,0,0,0.3), 
        0 0 15px rgba(255,255,255,0.2);
}

/* 3. The Animations */
@keyframes sparkle-rotate {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
    100% { transform: scale(0.8) rotate(360deg); opacity: 0.5; }
}

/* Make sure text stays above the glint */
.feature-box h3, .feature-box p, .feature-icon {
    position: relative;
    z-index: 3;
    font-family: 'Cinzel', serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.1em;
    color: #F8F9FA;
    margin-bottom: 14px;
    
}

.feature-box:hover .feature-icon {
    animation: fa-bounce 1s infinite;
    filter: drop-shadow(0 0 20px #fff);
}

/* Styling for the mini icons next to text */
.mini-icon {
    height: 1.1em; /* Matches your text height exactly */
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
}

/* Interactive animation when you hover over the whole box */
.feature-box:hover .mini-icon {
    transform: scale(1.2) rotate(10deg);
}

.mini-icon {
    height: 1.2em; /* Matches text height */
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    
/* Adds a soft white/colored glow around the transparent icon */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

/* Specific hover effect for the Trade Token */
.feature-box.green:hover .mini-icon {
    transform: rotate(360deg) scale(1.3); /* Spins like a real coin! */
    filter: drop-shadow(0 0 10px #2ecc71);
}

/* Specific glow for the Market Hourglass */
.feature-box.red:hover .mini-icon {
    transform: scale(1.3) translateY(-2px);
    filter: drop-shadow(0 0 10px #e74c3c);
}


    /*TCG SETS */
 
/* Carousel layout */
.carousel-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
 
.carousel-outer {
  overflow: hidden;
  border-radius: 16px;
  border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    height: 400px;     
}
 
.carousel-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
 
/* Cards */
.pcard {
  width: 300px;
  flex-shrink: 0;
  background: #1E2329;
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.1s, border-color 0.1s;
}
 
.pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.4);
}
 
.pcard-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* keeps square like others */
  overflow: hidden;
  position: relative;
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ THIS FIXES IT */
}
 
.pcard-body {
  padding: 16px 18px;
}
 
/* Badges */
.pbadge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
.badge-upcoming {
  background: black;
  color: #F8F9FA;
  border: 2px solid var(--gold-light);
}
 
.badge-new {
  background: #115E59;
  color: #F8F9FA;
  border: 2px solid var(--gold-light);
}
 
.badge-recent {
  background: rgb(207, 46, 68);
  color: #F8F9FA;
  border: 2px solid var(--gold-light);
}
 
/* Card text */
.pseries {
  font-size: 14px;
  font-weight: 600;
  color: #F8F9FA;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
 
.pname {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
 
.pdate {
  font-size: 14px;
  font-weight: 600;
  color: #F8F9FA;
}
 
/* Controls */

.controls-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
 
.dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 20px;
}
 
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1E2329;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: background 0.1s, transform 0.1s;
}
 
.dot.active {
  background: var(--gold-mid);
  transform: scale(1.4);
  border-color: var(--gold-mid);
}
 

    /*MARKET MOVERS */

.market-movers {
    margin-top: 40px;
    width: 100%;
}

.mm-ticker-container {
    overflow: hidden;
    width: 100%;
    border-top: 2px solid #C89B2A;
    border-bottom: 3px solid #C89B2A;
    padding: 30px 0;
    background: #1E2329;
}

.mm-ticker {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 90s linear infinite;
}

.mm-ticker:hover {
    animation-play-state: paused;  /* pauses on hover so users can read */
}

.mm-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
    white-space: nowrap;
}

.mm-card-img {
    width: 180px;
    height: 252px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255,215,0,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0,5);
    transition: transform 0.2s ease;
}

.mm-card-img:hover {
  transform: scale(1.05);
}

.mm-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mm-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
}

.mm-card-set {
    font-size: 14px;
    color: #F8F9FA;
    font-weight: 600;
}

.mm-item-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.mm-price {
    font-size: 18px;
    font-weight: 800;
    color: #F5D06B;
}

.mm-trend {
    font-size: 16px;
    font-weight: 700;
}

.mm-divider {
    color: #D4AF37;
    font-size: 100px;
    margin-left: 10px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


    /*TOP COLLECTORS */

/* 1. The Container */
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 60px 48px 40px;
  background: transparent;
  border-bottom: 2px solid rgba(200,155,42,0.12);
  box-shadow: 0 15px 30px -15px rgba(0,0,0,0.8);
  position: relative;
}
 
/* Subtle radial glow behind the whole podium */
.podium-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200,155,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
 
/* ── Base card ── */
.collector-card {
  background: #1E2329;
  border: 2px solid rgba(200,155,42,0.2);
  border-radius: 4px;
  padding: 40px 20px 20px;
  text-align: center;
  width: 300px;
  position: relative;
  overflow: visible;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
 
.collector-card:hover {
  background: #1E2329;
  border-color: var(--gold-line);
  transform: translateY(-4px);
}
 
/* ── Podium heights ── */
.collector-card.gold   { height: 380px; border-color: var(--gold-mid); }
.collector-card.silver { height: 320px; border-color: #C0C0C0; box-shadow: 0 0 12px rgba(192,192,192,0.15), inset 0 0 20px rgba(192,192,192,0.03); }
.collector-card.bronze { height: 280px; border-color: #CD7F32; box-shadow: 0 0 12px rgba(205,127,50,0.15), inset 0 0 20px rgba(205,127,50,0.03); }
 
/* ── Gold card floating animation ── */
.collector-card.gold {
  animation: podium-float 4s ease-in-out infinite;
}

@keyframes podium-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.collector-card.gold:hover { animation-play-state: paused; }
 
/* ── Gold spotlight glow ── */
.collector-card.gold::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,155,42,0.18) 0%, rgba(200,155,42,0.05) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: spotlight-pulse 4s ease-in-out infinite;
}

@keyframes spotlight-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}
 
/* ── Rank badge ── */
.rank-badge {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 24px;
  border-radius: 4px;
  white-space: nowrap;
}

.rank-badge.gold-glow {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  color: #000;
  box-shadow: 0 0 16px rgba(200,155,42,0.5);
}

.rank-badge.silver-badge {
  background: silver;
  border: 2px solid rgba(192,192,192,0.4);
  color: black;
}

.rank-badge.bronze-badge {
  background: #CD7F32;
  border: 1px solid rgba(205,127,50,0.4);
  color: black;
}
 
/* ── Trophy SVG ── */
.trophy-svg {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: block;
  transition: transform 0.3s, filter 0.3s;
  animation: trophy-shimmer 5s ease-in-out infinite;
}

.trophy-gold   { fill: var(--gold-light) !important; filter: drop-shadow(0 0 6px rgba(200,155,42,0.6)); }
.trophy-silver { fill: #C0C0C0 !important;            filter: drop-shadow(0 0 6px rgba(192,192,192,0.4)); }
.trophy-bronze { fill: #CD7F32 !important;            filter: drop-shadow(0 0 6px rgba(205,127,50,0.4)); }
 
@keyframes trophy-shimmer {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(200,155,42,0.3)); }
  50%       { filter: drop-shadow(0 0 14px rgba(200,155,42,0.8)) brightness(1.3); }
}
.collector-card:hover .trophy-svg {
  transform: scale(1.15) rotate(4deg);
}
 
/* ── Collector name & stats ── */
.collector-card .collector-name {
  font-family: 'Cinzel', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin-bottom: 8px;
}

.collector-card .collector-stat {
  font-family: 'Cinzel', serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(200,155,42,0.45);
}

.collector-card.gold .collector-stat { color: rgba(200,155,42,0.7); }
 
/* ── Floor shadow ── */
.collector-card::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
  transition: width 0.3s, filter 0.3s;
}

.collector-card.gold::after {
  background: rgba(200,155,42,0.25);
  width: 90%; height: 14px;
  filter: blur(10px);
}

.collector-card:hover::after {
  width: 55%;
  filter: blur(10px);
}
 
/* ── Collectors Section ── */
.collectors-section {
  padding: 80px 48px;
  background: #000;
  position: relative;
}
 
/* ── Wrapper fixes ── */
.collectors-grid {
  width: 100%;
}

.glass-panel {
  width: 100%;
}
 
/* ── Card inner layout ── */
.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-top: 16px;
  gap: 8px;
}
 
/* ── Trophy wrap: icon + rank number layered ── */
.trophy-wrap {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 4px;
}

.trophy-wrap .trophy-svg {
  width: 64px; height: 64px;
  margin: 0;
}

.trophy-rank-num {
  position: absolute;
  bottom: -6px; right: -6px;
  font-family: 'Cinzel', serif;
  font-size: 11px; font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(192,192,192,0.4);
  color: #C0C0C0;
}

.trophy-rank-num.gold-num {
  border-color: var(--gold-mid);
  color: var(--gold-light);
  box-shadow: 0 0 8px rgba(200,155,42,0.5);
}

.trophy-rank-num.bronze-num {
  border-color: rgba(205,127,50,0.4);
  color: #CD7F32;
}
 
/* ── Avatar initials circle ── */
.collector-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(200,155,42,0.08);
  border: 2px solid rgba(200,155,42,0.2);
  color: rgba(200,155,42,0.6);
  margin-bottom: 2px;
}

.collector-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.gold-av {
  background: rgba(200,155,42,0.15);
  border-color: var(--gold-mid);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(200,155,42,0.25);
}

.silver-av {
  background: rgba(192,192,192,0.08);
  border-color: rgba(192,192,192,0.3);
  color: #C0C0C0;
}

.bronze-av {
  background: rgba(205,127,50,0.08);
  border-color: rgba(205,127,50,0.3);
  color: #CD7F32;
}
 
/* ── Divider ── */
.collector-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 4px auto;
}

.gold-divider {
  width: 60px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
 
/* ── Stat rows ── */
.collector-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4px;
  gap: 12px;
}

.stat-key {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.2em;
  color: #F8F9FA;
  text-transform: uppercase;
}

.stat-val {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 600;
  color: #D4AF37;
}

.gold-val { color: #D4AF37; }
 
/* ── Gold crown icon above card ── */
.gold-crown {
  position: absolute;
  top: -32px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(200,155,42,0.8));
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-5px); }
}

.dex-donate-custom-input {
  background: #1a1a1a;
  border: 1px solid var(--gold-mid);
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
  outline: none;
}

.dex-donate-custom-input:focus {
  border-color: var(--gold-light);
}

/* Phone Accessibility */
@media (hover: hover) {
  .mm-ticker:hover {
    animation-play-state: paused;
  }
}
