/* ============================================
   MINEDROP SITE — Design Tokens & Styles
   Minecraft/pixel aesthetic, dark theme
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Nunito:wght@400;600;700;900&display=swap');

:root {
  /* Type scale */
  --text-xs:   clamp(0.6rem,  0.55rem + 0.25vw, 0.75rem);
  --text-sm:   clamp(0.75rem, 0.7rem  + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem,  0.85rem + 0.25vw, 1rem);
  --text-lg:   clamp(1rem,    0.9rem  + 0.5vw,  1.25rem);
  --text-xl:   clamp(1.2rem,  1rem    + 1vw,    1.8rem);
  --text-2xl:  clamp(1.5rem,  1rem    + 2vw,    2.5rem);
  --text-3xl:  clamp(2rem,    1rem    + 3vw,    3.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Colors — Minecraft dark theme */
  --color-bg:          #1a1a1a;
  --color-surface:     #2a2a2a;
  --color-surface-2:   #333;
  --color-box:         rgba(40,35,30,0.95);
  --color-box-border:  #000;
  --color-text:        #ffffff;
  --color-text-muted:  #cccccc;
  --color-text-faint:  #999;
  --color-green:       #3f9b2d;
  --color-green-hover: #4CAF50;
  --color-red:         #c0392b;
  --color-red-hover:   #e74c3c;
  --color-gold:        #f0c040;
  --color-gold-dark:   #c8960a;
  --color-dirt:        rgba(89,83,78,0.92);
  --color-dirt-border: #5a4e3a;
  --color-faq-bg:      #3d3530;
  --color-faq-border:  #6a6460;
  --color-accent:      #55ff55;

  /* Fonts */
  --font-pixel: 'Press Start 2P', monospace;
  --font-body:  'Nunito', sans-serif;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-pixel: 4px 4px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
  --shadow-box: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-btn: 3px 3px 0 rgba(0,0,0,0.7);

  --content-default: 1100px;
  --content-narrow: 760px;
}

/* ========== BACKGROUND ========== */
.mc-bg {
  background: #0d1a0d;
  position: relative;
}
/* Canvas background layer */
#mc-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.mc-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 1;
  pointer-events: none;
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
}

/* ========== PIXEL TEXT EFFECT ========== */
.pixel-text {
  font-family: var(--font-pixel);
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}
.pixel-text-sm {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  text-shadow: 2px 2px 0 #000;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  border-bottom: 3px solid #000;
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-6);
  max-width: var(--content-default);
  margin: 0 auto;
  gap: var(--space-4);
}
.nav-logo {
  font-family: var(--font-pixel);
  font-size: clamp(0.6rem, 0.5rem + 0.8vw, 1rem);
  color: var(--color-gold);
  text-shadow: 2px 2px 0 #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  text-shadow: 1px 1px 0 #000;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-gold); }
.nav-cta {
  background: var(--color-green);
  color: #fff !important;
  padding: var(--space-2) var(--space-4);
  border: 2px solid #000;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover {
  background: var(--color-green-hover) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-mobile-toggle span {
  display: block;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-pixel);
  font-size: var(--text-sm);
  border: 3px solid #000;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.7); }
.btn:active { transform: translateY(1px); box-shadow: 1px 1px 0 rgba(0,0,0,0.7); }
.btn-green {
  background: linear-gradient(to bottom, #4CAF50, #2e7d32);
  color: #fff;
}
.btn-green:hover { background: linear-gradient(to bottom, #66bb6a, #388e3c); }
.btn-red {
  background: linear-gradient(to bottom, #e53935, #b71c1c);
  color: #fff;
}
.btn-red:hover { background: linear-gradient(to bottom, #ef5350, #c62828); }
.btn-gold {
  background: linear-gradient(to bottom, #f0c040, #c8960a);
  color: #000;
  text-shadow: none;
}
.btn-gold:hover { background: linear-gradient(to bottom, #ffd54f, #d4a017); }
.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: clamp(0.65rem, 0.5rem + 0.8vw, 0.875rem);
}

/* ========== MC BOX ========== */
.mc-box {
  background: var(--color-dirt);
  border: 4px solid #000;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-box), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.mc-box-inner { padding: var(--space-8) var(--space-8); }
.mc-box-title {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: var(--color-gold);
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
  margin-bottom: var(--space-6);
  line-height: 1.3;
}
.mc-section-label {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-shadow: 2px 2px 0 #000;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  display: block;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-6);
  position: relative;
  z-index: 2;
}
.hero-logo-wrap {
  margin-bottom: var(--space-6);
}
.hero-logo {
  width: min(420px, 90vw);
  height: auto;
}
.hero-title {
  font-family: var(--font-pixel);
  font-size: clamp(0.6rem, 0.4rem + 1.2vw, 1.1rem);
  color: #fff;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
  max-width: 700px;
  margin: 0 auto var(--space-8);
  line-height: 2;
}
.hero-btns {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== VIDEO SECTION ========== */
.video-section {
  padding: var(--space-16) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}
.video-label {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  text-align: center;
}
.video-frame-wrap {
  position: relative;
  width: min(360px, 90vw);
}
.video-border {
  border: 6px solid #000;
  box-shadow: 8px 8px 0 #000, var(--shadow-box);
  background: #000;
  overflow: hidden;
  border-radius: 4px;
}
.video-border video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.video-border iframe {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  border: none;
}

/* ========== SECTION GENERAL ========== */
.section {
  padding: var(--space-16) var(--space-6);
  position: relative;
  z-index: 2;
}
.section-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.feature-card {
  background: rgba(0,0,0,0.5);
  border: 3px solid #000;
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.feature-card-icon {
  font-size: 2rem;
  line-height: 1;
}
.feature-card-title {
  font-family: var(--font-pixel);
  font-size: var(--text-sm);
  color: var(--color-gold);
  text-shadow: 2px 2px 0 #000;
}
.feature-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========== BULLET LIST ========== */
.mc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.mc-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.mc-list li::before {
  content: '⛏';
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== STATS ROW ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.stat-item {
  background: rgba(0,0,0,0.5);
  border: 3px solid #000;
  padding: var(--space-5) var(--space-4);
  text-align: center;
  border-radius: var(--radius-sm);
}
.stat-value {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: var(--color-gold);
  text-shadow: 3px 3px 0 #000;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
  /* Scale down font for long values */
}
.stat-value.long-text {
  font-size: var(--text-sm);
  letter-spacing: 0;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  display: block;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, rgba(63,155,45,0.3), rgba(0,0,0,0.6));
  border: 4px solid var(--color-green);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.cta-banner-title {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  line-height: 1.6;
}
.cta-banner-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 500px;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.faq-item {
  background: var(--color-faq-bg);
  border: 3px solid var(--color-faq-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  line-height: 1.6;
  transition: background 0.2s;
}
.faq-item summary:hover { background: rgba(255,255,255,0.05); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--color-gold);
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-body {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 2px solid var(--color-faq-border);
  padding-top: var(--space-4);
}

/* ========== POPUP ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--color-dirt);
  border: 5px solid #000;
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-8);
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 60px rgba(63,155,45,0.4);
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-4);
  font-family: var(--font-pixel);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-2);
  transition: color 0.2s;
}
.popup-close:hover { color: #fff; }
.popup-icon { font-size: 3rem; margin-bottom: var(--space-4); }
.popup-offer {
  font-family: var(--font-pixel);
  font-size: clamp(0.8rem, 0.5rem + 1.5vw, 1.2rem);
  color: #ffff55;
  text-shadow: 3px 3px 0 #000;
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.popup-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* ========== TELEGRAM NOTIFICATION ========== */
/* Small ! circle trigger */
.tg-trigger {
  position: fixed;
  top: 90px;
  right: 16px;
  z-index: 300;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2196F3;
  border: 3px solid #fff;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(33,150,243,0.5);
  animation: tg-wobble 2.4s ease-in-out infinite;
  transition: transform 0.15s;
}
.tg-trigger:hover { transform: scale(1.15); }
@keyframes tg-wobble {
  0%,100% { transform: rotate(0deg) scale(1); }
  10%      { transform: rotate(-12deg) scale(1.08); }
  20%      { transform: rotate(12deg) scale(1.08); }
  30%      { transform: rotate(-8deg) scale(1.04); }
  40%      { transform: rotate(8deg) scale(1.04); }
  50%      { transform: rotate(0deg) scale(1); }
}
/* Panel that slides in from the right */
.tg-notify {
  position: fixed;
  top: 80px;
  right: 62px;   /* sits to the left of the ! circle */
  z-index: 299;
  max-width: 280px;
  width: calc(100vw - 80px);
  background: #17212b;
  border: 3px solid #2196F3;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  box-shadow: 0 8px 32px rgba(33,150,243,0.35);
  /* Hidden by default — slides in from right */
  transform: translateX(calc(100% + 80px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.tg-notify.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.tg-notify-icon { font-size: 1.5rem; flex-shrink: 0; }
.tg-notify-content { flex: 1; }
.tg-notify-title {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: #2196F3;
  text-shadow: 1px 1px 0 #000;
  margin-bottom: var(--space-2);
  line-height: 1.4;
}
.tg-notify-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.tg-notify-text a {
  color: #2196F3;
  text-decoration: underline;
}
.tg-notify-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--color-text-faint);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.tg-notify-close:hover { color: #fff; }

/* ========== PLAYER CHAT ========== */
.chat-widget {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 200;
  width: 320px;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  background: rgba(20,20,20,0.97);
  border: 3px solid #000;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(63,155,45,0.3);
  overflow: hidden;
  transform: translateY(calc(100% + 20px));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.chat-widget.open { transform: translateY(0); }
.chat-header {
  background: #111;
  border-bottom: 3px solid #000;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.chat-online-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.chat-header-title {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-shadow: 1px 1px 0 #000;
}
.chat-online-count {
  font-size: var(--text-xs);
  color: #4CAF50;
}
.chat-toggle-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}
.chat-toggle-btn:hover { color: #fff; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }
.chat-msg {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  animation: msg-in 0.3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.chat-msg-avatar {
  width: 24px; height: 24px;
  background: var(--color-surface-2);
  border: 2px solid #000;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.chat-msg-name {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--color-gold);
  text-shadow: 1px 1px 0 #000;
}
.chat-msg-time {
  font-size: 0.6rem;
  color: var(--color-text-faint);
  margin-left: auto;
}
.chat-msg-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: calc(24px + var(--space-2));
  word-break: break-word;
}
.chat-fab {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 199;
  background: var(--color-green);
  border: 3px solid #000;
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  cursor: pointer;
  box-shadow: var(--shadow-btn), 0 0 20px rgba(63,155,45,0.4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: background 0.2s, transform 0.1s;
}
.chat-fab:hover { background: var(--color-green-hover); transform: translateY(-2px); }
.chat-fab.hidden { display: none; }
.chat-badge {
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ========== REVIEWS PAGE ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.review-card {
  background: rgba(40,35,30,0.95);
  border: 3px solid #000;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.review-avatar {
  width: 48px; height: 48px;
  border: 3px solid #000;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--color-surface-2);
}
.review-info { flex: 1; }
.review-name {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  line-height: 1.4;
}
.review-country {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-1);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: var(--space-1);
}
.review-stars span {
  color: var(--color-gold);
  font-size: 0.9rem;
}
.review-stars span.empty { color: #555; }
.review-date {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-left: auto;
  align-self: flex-start;
}
.review-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(63,155,45,0.15);
  border: 1px solid rgba(63,155,45,0.4);
  border-radius: 99px;
  padding: 2px var(--space-3);
  font-size: var(--text-xs);
  color: #4CAF50;
}
.review-cta-box {
  background: linear-gradient(135deg, rgba(63,155,45,0.2), rgba(0,0,0,0.5));
  border: 3px solid var(--color-green);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border: 3px solid #000;
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}
.rating-big {
  font-family: var(--font-pixel);
  font-size: var(--text-3xl);
  color: var(--color-gold);
  text-shadow: 4px 4px 0 #000;
  line-height: 1;
}
.rating-stars-big {
  display: flex;
  gap: 4px;
}
.rating-stars-big span { font-size: 2rem; color: var(--color-gold); }
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.rating-bar-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  width: 40px;
  text-align: right;
}
.rating-bar-track {
  width: 120px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 4px;
}
.rating-bar-count {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  width: 20px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: rgba(0,0,0,0.9);
  border-top: 4px solid #000;
  padding: var(--space-10) var(--space-6);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.footer-logo {
  font-family: var(--font-pixel);
  font-size: clamp(0.6rem, 0.5rem + 0.5vw, 0.875rem);
  color: var(--color-gold);
  text-shadow: 2px 2px 0 #000;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  text-shadow: 1px 1px 0 #000;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-gold); }
.footer-divider {
  height: 2px;
  background: rgba(255,255,255,0.07);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-warning {
  font-family: var(--font-pixel);
  font-size: var(--text-xs);
  color: #e53935;
  text-shadow: 1px 1px 0 #000;
  line-height: 1.6;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-pplx {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-pplx:hover { color: var(--color-text-muted); }

/* ========== PAGE HEADER ========== */
.page-hero {
  padding: var(--space-20) var(--space-6) var(--space-12);
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-pixel);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  text-shadow: 4px 4px 0 #000, -2px -2px 0 #000;
  line-height: 1.4;
}
.page-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========== TWO-COL LAYOUT ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.two-col-text h2 {
  font-family: var(--font-pixel);
  font-size: var(--text-xl);
  color: var(--color-gold);
  text-shadow: 3px 3px 0 #000;
  margin-bottom: var(--space-5);
  line-height: 1.5;
}
.two-col-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.mc-image-block {
  background: rgba(0,0,0,0.5);
  border: 4px solid #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    border-top: 3px solid #000;
    padding: var(--space-5) var(--space-6);
    gap: var(--space-4);
    z-index: 99;
  }
  .nav-mobile-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .chat-widget { width: calc(100vw - 40px); right: 20px; }
  .chat-fab { right: 20px; }
  .tg-notify { right: 58px; width: calc(100vw - 74px); }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-xs);
  }
  .mc-box-inner { padding: var(--space-5); }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #666; }

/* ========== ANIMATIONS ========== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow-green {
  0%, 100% { box-shadow: 0 0 10px rgba(63,155,45,0.4); }
  50% { box-shadow: 0 0 25px rgba(63,155,45,0.7); }
}
.float-anim { animation: float 3s ease-in-out infinite; }
.glow-green { animation: glow-green 2.5s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CHAT INPUT ========== */
.chat-input-row {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-top: 2px solid #222;
  background: #0d0d0d;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus {
  border-color: var(--color-green);
}
.chat-input::placeholder {
  color: var(--color-text-faint);
}
.chat-send-btn {
  background: var(--color-green);
  border: 2px solid #000;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: var(--shadow-btn);
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--color-green-hover); transform: scale(1.05); }
.chat-send-btn:active { transform: scale(0.97); }
.chat-msg.own .chat-msg-name { color: #55ff55; }
.chat-msg.own .chat-msg-avatar { background: #1a3a1a; border-color: var(--color-green); }
