@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&family=Press+Start+2P&display=swap');

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

:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-card: #0d0d0d;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dark: #d97706;
  --white: #ffffff;
  --white-5: rgba(255,255,255,0.05);
  --white-10: rgba(255,255,255,0.10);
  --white-20: rgba(255,255,255,0.20);
  --white-40: rgba(255,255,255,0.40);
  --white-45: rgba(255,255,255,0.45);
  --white-55: rgba(255,255,255,0.55);
  --white-72: rgba(255,255,255,0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Georgian', sans-serif;
  background-color: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20;
  background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.5);
}

/* Selection */
::selection {
  background: var(--amber);
  color: #000;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 24px;
  pointer-events: none;
}

.navbar-inner {
  max-width: 1150px;
  margin: 0 auto;
  height: 64px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: auto;
  transition: all 0.5s ease;
}

.navbar-inner.scrolled {
  width: 92%;
  transform: translateY(-15px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.nav-brand:hover img {
  transform: scale(1.1);
}

.nav-brand span {
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.05);
}

.nav-auth {
  flex-shrink: 0;
}

.nav-auth-btn {
  padding: 10px 24px;
  background: var(--amber);
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.3);
  text-decoration: none;
  display: inline-block;
}

.nav-auth-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 96px;
  left: 24px;
  right: 24px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.mobile-menu.active {
  display: block;
  animation: mobileMenuIn 0.3s ease;
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-menu a {
  display: block;
  padding: 16px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--amber);
  color: #000;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 1200px;
  height: 1200px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 50%;
  filter: blur(160px);
  margin-right: -384px;
  margin-top: -384px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 50%;
  filter: blur(140px);
  margin-left: -192px;
  margin-bottom: -192px;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  margin-bottom: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge-text {
  color: #10b981;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-title {
  font-size: clamp(56px, 8vw, 144px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  user-select: none;
}

.hero-title span {
  background: linear-gradient(135deg, var(--amber) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 500;
  max-width: 576px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 64px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: var(--amber);
  color: #000;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25);
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: var(--white);
  transform: translateY(-4px) scale(1.02);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) scale(1.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-stat-value span {
  color: var(--amber);
  font-size: 18px;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero character display */
.hero-character {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: heroCharIn 1.2s ease-out;
}

@keyframes heroCharIn {
  from { opacity: 0; transform: scale(0.9) translateX(50px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

.hero-character-img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 40px 100px rgba(245, 158, 11, 0.15));
  user-select: none;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Minecraft nameplates */
.minecraft-nameplate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  z-index: 20;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.7));
  transition: transform 180ms ease, filter 180ms ease;
  text-decoration: none;
}

.minecraft-nameplate:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 16px 22px rgba(245, 158, 11, 0.18)) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.7));
}

.minecraft-nameplate.left {
  bottom: 80%;
  left: 5%;
  animation: floatNameplate 4s ease-in-out infinite;
}

.minecraft-nameplate.right {
  bottom: 80%;
  right: 5%;
  animation: floatNameplate 4s ease-in-out infinite 1s;
}

@keyframes floatNameplate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.minecraft-player-name {
  margin: 0;
  font-family: "Press Start 2P", ui-monospace, monospace;
  font-size: clamp(12px, 1.35vw, 17px);
  line-height: 1.5;
  color: #f8fafc;
  text-align: center;
  text-shadow:
    2px 2px 0 #111827,
    -2px 2px 0 #111827,
    2px -2px 0 #111827,
    -2px -2px 0 #111827,
    0 4px 10px rgba(0, 0, 0, 0.8);
}

.minecraft-founder-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px 5px;
  border: 2px solid rgba(245, 158, 11, 0.9);
  border-bottom-color: rgba(146, 64, 14, 0.95);
  border-right-color: rgba(146, 64, 14, 0.95);
  background:
    linear-gradient(180deg, rgba(254, 243, 199, 0.14), rgba(245, 158, 11, 0.08)),
    rgba(20, 14, 4, 0.36);
  color: #fbbf24;
  font-family: "Press Start 2P", ui-monospace, monospace;
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(245, 158, 11, 0.24);
  text-shadow: 1px 1px 0 #451a03;
}

/* Event card */
.event-card {
  position: absolute;
  right: 24px;
  top: 112px;
  z-index: 20;
  width: 310px;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: rgba(11, 11, 11, 0.9);
  padding: 16px;
  text-align: left;
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.5);
  background: #101010;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 48%);
  opacity: 0.8;
  pointer-events: none;
}

.event-card-inner {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
}

.event-card-img-wrap {
  position: relative;
  height: 96px;
}

.event-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0 8px 4px 8px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(16px);
}

.event-card-img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(245, 158, 11, 0.18));
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: #fbbf24;
  padding: 4px 12px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
}

.event-card h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  transition: color 0.3s;
}

.event-card:hover h3 {
  color: #fde68a;
}

.event-card p {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 160px;
}

.features-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.features-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 80px;
  text-align: center;
  opacity: 0.5;
  padding-top: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  transition: all 0.5s ease;
  cursor: default;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.page-eyebrow {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--amber);
  margin-bottom: 12px;
}

.page-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-desc {
  margin-top: 16px;
  max-width: 672px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== STORE PAGE ===== */
.store-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .store-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .store-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

.store-cat-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.store-cat-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.store-cat-btn.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--white);
  color: #000;
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1);
}

.store-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-cat-btn.active .store-cat-icon {
  background: #000;
  color: var(--amber);
}

.store-cat-btn:not(.active) .store-cat-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--amber);
}

.store-cat-title {
  display: block;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.store-cat-count {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
}

.store-cat-btn.active .store-cat-count {
  color: rgba(0, 0, 0, 0.5);
}

.store-cat-btn:not(.active) .store-cat-count {
  color: rgba(255, 255, 255, 0.3);
}

/* Rank products (horizontal layout) */
.rank-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rank-product {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.rank-product:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.rank-product-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .rank-product-grid {
    grid-template-columns: 190px 1fr 190px;
  }
}

.rank-product-img {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .rank-product-img {
    justify-content: flex-start;
  }
}

.rank-product-img img {
  height: 160px;
  width: 176px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s ease;
}

.rank-product:hover .rank-product-img img {
  transform: scale(1.05);
}

.rank-product-info {
  min-width: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .rank-product-info {
    text-align: left;
  }
}

.rank-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .rank-badges {
    justify-content: flex-start;
  }
}

.rank-badge {
  border-radius: 9999px;
  background: var(--white);
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
}

.rank-badge-featured {
  background: var(--amber-light);
}

.rank-product-name {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.rank-product-desc {
  margin-top: 8px;
  max-width: 576px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.rank-perks {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .rank-perks {
    justify-content: flex-start;
  }
}

.rank-perk {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.rank-product-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

@media (min-width: 768px) {
  .rank-product-actions {
    align-items: flex-end;
  }
}

.rank-price {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

@media (min-width: 768px) {
  .rank-price {
    text-align: right;
  }
}

.rank-add-btn {
  border-radius: 16px;
  background: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rank-add-btn:hover {
  background: var(--amber-light);
}

/* Key products (card layout) */
.key-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .key-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .key-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.key-product {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(12, 13, 16, 0.95);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.key-product:hover {
  transform: translateY(-4px);
  background: #111217;
}

.key-product-featured-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 20;
  border-radius: 9999px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fde68a;
}

.key-product-inner {
  padding: 24px;
}

.key-product-img {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.key-product-img img {
  height: 320px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.65));
  transition: transform 0.5s ease;
}

.key-product:hover .key-product-img img {
  transform: scale(1.035) translateY(-4px);
}

.key-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.key-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-badge {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}

.key-product-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.key-product-desc {
  margin-top: 12px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.key-product-price {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.key-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

.key-old-price {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
}

.key-perks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.key-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.key-perk svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.key-add-btn {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
  border-radius: 16px;
  background: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.key-add-btn:hover {
  background: var(--amber-light);
}

/* Store sidebar */
.store-sidebar {
  position: sticky;
  top: 112px;
  height: fit-content;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.store-sidebar-header {
  margin-bottom: 24px;
}

.store-sidebar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.store-sidebar-title h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.store-sidebar-title svg {
  color: rgba(255, 255, 255, 0.7);
}

.store-checkout-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.store-checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-checkout-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
}

.store-checkout-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}

.store-checkout-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--white);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.store-checkout-tags {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.store-checkout-tag {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
}

.store-cart-empty {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.store-cart-total {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.store-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.store-cart-total-label {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

.store-cart-total-value {
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
}

.store-checkout-btn {
  width: 100%;
  border-radius: 16px;
  background: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-checkout-btn:hover {
  background: var(--amber-light);
}

/* ===== LEADERBOARD ===== */
.lb-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .lb-modes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lb-mode-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lb-mode-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.lb-mode-btn.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--white);
  color: #000;
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1);
}

.lb-mode-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lb-mode-btn.active .lb-mode-icon {
  background: #000;
  color: var(--amber);
}

.lb-mode-btn:not(.active) .lb-mode-icon {
  background: rgba(255, 255, 255, 0.05);
}

.lb-mode-btn:not(.active).rose .lb-mode-icon { color: #fda4af; }
.lb-mode-btn:not(.active).cyan .lb-mode-icon { color: #67e8f9; }
.lb-mode-btn:not(.active).emerald .lb-mode-icon { color: #6ee7b7; }

.lb-mode-name {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lb-players {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lb-player {
  display: grid;
  gap: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  align-items: center;
}

.lb-player:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .lb-player {
    grid-template-columns: 90px 1fr 180px;
  }
}

.lb-rank {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lb-rank-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.lb-rank-badge.gold {
  background: var(--amber-light);
  color: #000;
}

.lb-rank-badge.silver {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}

.lb-player-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.lb-player-mode {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.lb-player-stats {
  text-align: left;
}

@media (min-width: 768px) {
  .lb-player-stats {
    text-align: right;
  }
}

.lb-player-value {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.lb-player-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RULES PAGE ===== */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rule-card {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  transition: all 0.5s ease;
  position: relative;
}

.rule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.rule-number {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
}

.rule-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.rule-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.1);
}

.rule-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  transition: color 0.3s;
}

.rule-card:hover .rule-title {
  color: var(--amber-light);
}

.rule-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== FORUM PAGE ===== */
.forum-header {
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%), rgba(255, 255, 255, 0.03);
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.forum-header-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .forum-header-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.forum-eyebrow {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--amber);
  margin-bottom: 12px;
}

.forum-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.forum-desc {
  margin-top: 16px;
  max-width: 672px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.forum-auth-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.forum-auth-box img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.forum-auth-name {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.forum-auth-role {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.forum-section-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--amber);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.forum-cat-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.forum-cat-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.05);
}

.forum-cat-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

@media (min-width: 768px) {
  .forum-cat-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.forum-cat-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.forum-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.forum-cat-icon svg {
  width: 32px;
  height: 32px;
}

.forum-cat-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.forum-cat-staff {
  border-radius: 9999px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 12px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
}

.forum-cat-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
}

.forum-cat-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .forum-cat-right {
    text-align: right;
  }
}

.forum-cat-count {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}

.forum-cat-count-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.forum-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.forum-cat-btn.primary {
  background: var(--amber);
  color: #000;
}

.forum-cat-btn.primary:hover {
  background: var(--white);
}

.forum-cat-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 96px 0;
  background: var(--bg-primary);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer-brand-title {
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.footer-social.discord:hover { color: #5865F2; }
.footer-social.youtube:hover { color: #FF0000; }
.footer-social.tiktok:hover { color: var(--white); }

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-nav-title {
  color: var(--white);
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  opacity: 0.3;
  margin-bottom: 32px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-link {
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal-sep {
  opacity: 0.1;
}

.footer-copyright {
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.footer-copyright span {
  opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Stagger delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-content {
  padding: 128px 0 80px;
  position: relative;
  z-index: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 380px;
  }
}

.grid-2-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .grid-2-reverse {
    grid-template-columns: 1fr 340px;
  }
}

/* ===== UTILITY ===== */
.text-amber { color: var(--amber); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-45 { color: rgba(255, 255, 255, 0.45); }
.bg-amber { background-color: var(--amber); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .event-card {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 44px;
  }

  .hero-title {
    font-size: clamp(56px, 17vw, 82px);
    line-height: 0.88;
  }

  .hero-character-img {
    max-width: min(360px, 92vw);
  }

  .minecraft-nameplate.left {
    left: 0;
    bottom: 78%;
  }

  .minecraft-nameplate.right {
    right: 0;
    bottom: 78%;
  }

  .hero-buttons {
    margin-bottom: 34px;
  }

  .hero-buttons .hero-btn-primary,
  .hero-buttons .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 20px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
    border-radius: 24px;
  }

  .page-content {
    padding-top: 104px;
  }

  .page-title {
    font-size: 42px;
  }

  .navbar {
    top: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-inner {
    height: 56px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 18px;
  }

  .nav-brand img {
    width: 34px;
    height: 34px;
  }

  .nav-brand span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .minecraft-nameplate {
    gap: 5px;
    max-width: 130px;
  }

  .minecraft-player-name {
    font-size: 9px;
    text-shadow:
      1px 1px 0 #111827,
      -1px 1px 0 #111827,
      1px -1px 0 #111827,
      -1px -1px 0 #111827,
      0 3px 8px rgba(0, 0, 0, 0.85);
  }

  .minecraft-founder-rank {
    min-height: 22px;
    padding: 5px 7px 4px;
    font-size: 6px;
    gap: 4px;
    border-width: 1px;
  }

  .minecraft-founder-rank svg {
    width: 9px;
    height: 9px;
  }

  .rank-product-grid {
    grid-template-columns: 1fr;
  }

  .rank-product-actions {
    align-items: stretch;
  }

  .rank-price {
    text-align: center;
  }

  .lb-player {
    grid-template-columns: 1fr;
  }

  .lb-player-stats {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .minecraft-nameplate {
    max-width: 112px;
  }

  .minecraft-player-name {
    font-size: 7px;
  }

  .minecraft-founder-rank {
    font-size: 5px;
    min-height: 19px;
    padding: 4px 6px 3px;
  }

  .minecraft-nameplate.left {
    left: -4px;
    bottom: 76%;
  }

  .minecraft-nameplate.right {
    right: -4px;
    bottom: 76%;
  }
}
