/* ───────── GLOBAL RESET ───────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: #030712;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* ───────── 🌌 GALAXY / NEBULA BACKGROUND ───────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.35), transparent 40%),
    radial-gradient(circle at 80% 25%, rgba(99, 102, 241, 0.35), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.35), transparent 50%),
    radial-gradient(circle at 60% 50%, rgba(168, 85, 247, 0.25), transparent 55%);
  filter: blur(120px);
  animation: galaxyMove 20s ease-in-out infinite alternate;
}

@keyframes galaxyMove {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.15) translate(-40px, 30px); }
  100% { transform: scale(1.25) translate(40px, -30px); }
}

/* ✨ STARS LAYER */
.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1px 1px at 10% 20%, white, transparent),
    radial-gradient(1px 1px at 30% 80%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 70% 30%, white, transparent),
    radial-gradient(1px 1px at 90% 60%, white, transparent);
  background-size: 200px 200px;
  opacity: 0.25;
  animation: starDrift 60s linear infinite;
  pointer-events: none;
}

@keyframes starDrift {
  from { background-position: 0 0; }
  to   { background-position: 1000px 500px; }
}

/* ───────── 🧊 MAIN GLASS CARD ───────── */
.card {
  width: 420px;
  padding: 42px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  box-shadow: 0 0 90px rgba(34, 211, 238, 0.35);
  text-align: center;
  z-index: 2;
}

/* 🔵 LOGO */
.logo-wrap {
  width: 130px;
  height: 130px;
  margin: auto;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  box-shadow: 0 0 40px #22d3ee;
}

.logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

/* ✨ HEADINGS */
h1 {
  margin-top: 22px;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #22d3ee, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  margin: 16px 0 34px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* ───────── 📊 STATS ───────── */
.stats {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.stat {
  flex: 1;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.6);
}

.number {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #22d3ee, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label {
  margin-top: 6px;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ───────── 🔘 BUTTONS ───────── */
.buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.btn {
  flex: 1;
  padding: 15px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discord {
  background: linear-gradient(135deg, #5865f2, #7c83ff);
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.7);
}

.telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
  box-shadow: 0 0 25px rgba(42, 171, 238, 0.7);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 45px #38bdf8;
}

/* ───────── 💱 RATES PANEL ───────── */
.rates-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(15, 22, 45, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.35);
  animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
  from { box-shadow: 0 0 25px rgba(34, 211, 238, 0.25); }
  to   { box-shadow: 0 0 45px rgba(56, 189, 248, 0.55); }
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rate-row:hover {
  background: rgba(34, 211, 238, 0.15);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
  transform: scale(1.02);
}

.rate-row strong {
  color: #22d3ee;
}

/* ───────── ⭐ FEEDBACK PAGE ───────── */
.page-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.4rem;
}

.feedback-grid {
  max-width: 1100px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feedback-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 35px rgba(34, 211, 238, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.6);
}

.rating {
  margin-bottom: 10px;
  color: #facc15;
}

.comment {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.user {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ⭐ FEEDBACK BUTTON */
.feedback-btn {
  display: block;
  margin-top: 20px;
  padding: 15px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #22d3ee);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.9);
}

/* ───────── 📱 MOBILE ───────── */
@media (max-width: 480px) {
  .card {
    width: 90%;
    padding: 32px 22px;
  }

  .stats,
  .buttons {
    flex-direction: column;
  }
}
