:root {
  --bg-dark: #020617;
  --panel: rgba(15, 23, 42, 0.6);
  --border: rgba(148, 163, 184, 0.15);

  --text-main: #e5e7eb;
  --text-muted: #94a3b8;

  --accent: #22d3ee;
  --success: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 20%, rgba(34,211,238,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,0.2), transparent 45%),
    linear-gradient(180deg, #020617, #05060a);
}

/* PAGE */
.reseller-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

/* HEADER */
.reseller-header {
  text-align: center;
  margin-bottom: 80px;
}

.reseller-header h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 16px 0;
}

.reseller-header h1 span {
  color: var(--accent);
}

.reseller-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

.checks {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

/* COUNTRY */
.country-section {
  margin-top: 40px;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.country-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.count {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
}

/* INDONESIA FLAG */
.flag-id {
  width: 28px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(#ef4444 50%, #ffffff 50%);
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* GRID */
.reseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* CARD */
.reseller-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  text-decoration: none;
  color: var(--text-main);

  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.reseller-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,211,238,0.6);
  box-shadow: 0 0 30px rgba(34,211,238,0.25);
}

.reseller-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.reseller-card h4 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.verified {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}

.flag-global,
.flag-id {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.flag-global {
  font-size: 22px;
  margin-right: 6px;
  opacity: 0.95;
}

.flag-icon {
  width: 18px;
  height: auto;
  margin-left: 6px;
}

.return-home {
  position: absolute;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(229, 231, 235, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);

  transition: all 0.25s ease;
}

.return-home:hover {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: translateX(-2px);
}

.return-home .arrow {
  font-size: 16px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .return-home {
    top: 16px;
    left: 16px;
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (hover: none) {
  .reseller-card:hover,
  .choice-card:hover,
  .pill-item:hover {
    transform: none;
    box-shadow: none;
  }
}

/* FOOTER NOTE */
.reseller-warning {
  margin-top: 80px;
  padding: 16px 22px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);

  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border);
  border-radius: 18px;
}

