:root {
  --bg: #121826;
  --panel: #121826;
  --panel-light: #161d2f;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #01ce60;
  --accent-blue: #3b82f6;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: radial-gradient(circle at top, #111827, var(--bg));
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111827, var(--bg));
  color: var(--text);

  /* összevonva a későbbi body animációval (minden megmaradt) */
  animation: pageEnter 0.6s ease forwards;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== LIQUID GLASS HEADER (FIXED) ===== */

header {
  position: sticky;
  top: 0;
  z-index: 10;

  /* FONTOS: maradjon FLEX! */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 18px 40px;

  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.78),
    rgba(2, 6, 23, 0.55)
  );

  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  /* a pseudo elem miatt */
  overflow: hidden;
  isolation: isolate;
}

header::after {
  content: "";
  position: absolute;
  inset: -60px -120px;
  pointer-events: none;
  z-index: -1;

  /* Scroll-vezérelt “liquid” fény */
  background:
    radial-gradient(
      120% 80% at var(--gx, 12%) var(--gy, 0%),
      rgba(1, 206, 96, var(--ga, 0.22)),
      transparent 62%
    ),
    radial-gradient(
      90% 70% at calc(var(--gx, 12%) + 18%) calc(var(--gy, 0%) + 10%),
      rgba(1, 206, 96, calc(var(--ga, 0.22) * 0.7)),
      transparent 65%
    );

  opacity: 0.95;
  transition: background 0.08s linear;
  filter: blur(0px);
}

header .logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.5px;

  background: linear-gradient(90deg, #01ce60, #b9ffd8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: var(--muted);
}

header nav a {
  position: relative;
  padding: 8px 2px;
  transition: color 0.25s ease;
}

header nav a:hover {
  color: #b9ffd8;
}

header nav a.active {
  color: var(--text);
}

header nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(1, 206, 96, 0.95),
    rgba(1, 206, 96, 0.35)
  );
  box-shadow:
    0 0 12px rgba(1, 206, 96, 0.55),
    0 0 28px rgba(1, 206, 96, 0.30);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

header .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.14);
}

header .btn-accent {
  box-shadow:
    0 0 0 1px rgba(1, 206, 96, 0.35),
    0 0 24px rgba(1, 206, 96, 0.40);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #374151;
  color: var(--text);
}

.btn-accent {
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 18px rgba(1, 206, 96, 0.45);
}

/* ===== MAIN ===== */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

main.container > section {
  margin-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

/* HERO panel belső elemek ne csússzanak */
.hero .panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}

.tags {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.title span {
  color: var(--accent);
}

.description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SERVER CARD ===== */
.server-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.server-logo {
  height: 220px;
  border-radius: var(--radius);
  background: url("https://wallpapercave.com/wp/wp4421387.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(0,0,0,.8);
}

.server-info {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  color: #fbff00;
  font-weight: 600;
}

.server-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.server-mini {
  margin-top: 6px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.server-mini strong { color: var(--text); }

.server-mini .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(1, 206, 96, 0.35);
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 80px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: none
}

/* ===== ABOUT PAGE ===== */
nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.about-hero { margin-bottom: 40px; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.about-box h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.about-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-cta { text-align: center; }

.about-cta h2 { margin-bottom: 12px; }

/* ===== PAGE TRANSITION ===== */
#page-transition {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

#page-transition.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RULES PAGE ===== */
.rules-hero { margin-bottom: 40px; }

.rules {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.rule-block h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.rule-block ul { padding-left: 18px; }

.rule-block li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.rules-cta { text-align: center; }

/* ===== FAQ PAGE ===== */
.faq-hero { margin-bottom: 40px; }

.faq {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 0.35s ease;
  margin-top: 10px;
}

.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question span { transform: rotate(45deg); }

.faq-cta { text-align: center; }

/* ===== SHOP PAGE ===== */
.shop-hero { margin-bottom: 26px; }

.shop-hero-top {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.shop-badge {
  border-radius: var(--radius);
  background: rgba(1, 206, 96, 0.08);
  border: 1px solid rgba(1, 206, 96, 0.25);
  padding: 16px;
  text-align: center;
}

.shop-badge-title {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.shop-badge-value {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 1px;
}

.shop-badge-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.shop-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #374151;
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}

.chip.active {
  border-color: rgba(1, 206, 96, 0.45);
  box-shadow: 0 0 0 3px rgba(1, 206, 96, 0.12);
  color: var(--accent);
}

.shop-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.shop-search {
  border-radius: 999px;
  border: 1px solid #374151;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  padding: 10px 14px;
  font-size: 14px;
  min-width: 240px;
  outline: none;
}

.shop-search:focus {
  border-color: rgba(1, 206, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(1, 206, 96, 0.12);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-tag {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid rgba(1, 206, 96, 0.35);
  background: rgba(1, 206, 96, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.product-image {
  height: 58px;
  width: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(1, 206, 96, 0.20), rgba(2, 6, 23, 0.55));
  border: 1px solid rgba(1, 206, 96, 0.22);
}

.product-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price { font-weight: 800; letter-spacing: 0.2px; }

.shop-info h2 { margin-bottom: 10px; }
.shop-info ul { padding-left: 18px; }

.shop-info li {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ===== HOME CONTENT ===== */
.quick-stats {
  margin-top: 28px; /* az “utolsó” érték maradt */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.stat {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid #1f2937;
}

.stat-num {
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* Headings margin */
.howto h2,
.factions h2,
.events h2,
.staff h2,
.cta-final h2 {
  margin-bottom: 14px;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.howto-step {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.35);
}

.howto-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #04120b;
  background: var(--accent);
  margin-bottom: 10px;
}

.howto-step h3 { font-size: 16px; margin-bottom: 8px; }

.howto-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== Utilities / shared ===== */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.muted { color: var(--muted); font-size: 13px; }

.factions-grid,
.events-grid,
.staff-grid {
  margin-top: 14px;
}

.factions-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.faction-card,
.event {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.35);
}

.faction-card h3,
.event-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.faction-card p,
.event-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.event-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.35);
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 1px;
  background: radial-gradient(circle at top, rgba(1, 206, 96, 0.20), rgba(2, 6, 23, 0.55));
  border: 1px solid rgba(1, 206, 96, 0.22);
}

.staff-name { font-weight: 700; }
.staff-role { font-size: 12px; color: var(--muted); margin-top: 3px; }

.cta-final { text-align: center; margin-top: 40px; }

/* ===== FRACTION APPLICATION FORM ===== */
.form-hero { margin-bottom: 24px; }
.form-panel { overflow: hidden; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #374151;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(1, 206, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(1, 206, 96, 0.12);
}

.span-2 { grid-column: 1 / -1; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.form-msg {
  color: var(--muted);
  font-size: 13px;
  margin-left: 6px;
}

/* ===== DASHBOARD ===== */
.dash-hero { margin-bottom: 18px; }

.dash-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.dash-search {
  border-radius: 999px;
  border: 1px solid #374151;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  padding: 10px 14px;
  font-size: 14px;
  min-width: 260px;
  outline: none;
}

.dash-search:focus {
  border-color: rgba(1, 206, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(1, 206, 96, 0.12);
}

.dash-select {
  border-radius: 999px;
  border: 1px solid #374151;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.dash-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  margin-bottom: 40px;
}

.apps-list { display: grid; gap: 10px; }

.app-row {
  width: 100%;
  text-align: left;
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.35);
  color: var(--text);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}

.app-row:hover { border-color: rgba(1, 206, 96, 0.28); }

.app-row.selected {
  border-color: rgba(1, 206, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(1, 206, 96, 0.12);
}

.app-row-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.app-title { font-weight: 800; }

.app-row-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.dotsep { opacity: 0.6; }

.app-row-time {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.empty-state {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 8px;
}

.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.detail-title {
  font-size: 18px;
  font-weight: 900;
}

.detail-sub {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.detail-muted { color: var(--muted); font-size: 12px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.detail-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-card {
  border: 1px solid #1f2937;
  background: rgba(2, 6, 23, 0.35);
  border-radius: 14px;
  padding: 12px;
}

.detail-card .k { color: var(--muted); font-size: 12px; }
.detail-card .v { margin-top: 6px; font-weight: 700; }

.detail-block {
  margin-top: 14px;
  border-top: 1px solid #1f2937;
  padding-top: 14px;
  max-width: 100%;
  overflow-x: hidden;
}

.detail-block h3 { margin-bottom: 8px; font-size: 15px; }

.detail-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.note-area {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #374151;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;

  word-break: break-word;
  overflow-wrap: anywhere;
}

.note-area:focus {
  border-color: rgba(1, 206, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(1, 206, 96, 0.12);
}

.detail-footer {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* pills */
.pill {
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid #374151;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.pill-new {
  border-color: rgba(1, 206, 96, 0.35);
  background: rgba(1, 206, 96, 0.08);
  color: var(--accent);
}

.pill-accepted {
  border-color: rgba(1, 206, 96, 0.55);
  background: rgba(1, 206, 96, 0.14);
}

.pill-rejected {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.10);
}

/* text overflow fix */
.detail-block p,
.detail-card .v,
.app-row,
.app-row * {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.dash-tabs { display:flex; gap:10px; }
.dash-tab { padding:8px 14px; border:1px solid #555; }
.dash-tab.active { border-color:#01ce60; color:#01ce60; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: block;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1,206,96,0.35);
  box-shadow: 0 0 0 4px rgba(1,206,96,0.10);
}

.blog-title { font-weight: 800; font-size: 18px; }
.blog-meta { color: var(--muted); font-size: 12px; margin-top: 6px; }
.blog-excerpt { margin-top: 10px; color: rgba(255,255,255,0.86); }
.blog-read { margin-top: 12px; color: var(--accent); font-weight: 700; font-size: 13px; }

.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

/* ===== UNDER CONSTRUCTION ===== */
.uc-wrap {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  text-align:center;
}

.uc-box {
  max-width:620px;
  width:100%;
}

.uc-box h1 {
  font-size:42px;
  margin:0 0 12px;
}

.uc-box p {
  color:var(--muted);
  margin:0 0 18px;
}

.uc-actions {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

/* ===== users.php admin lista layout FIX ===== */
.admin-list { display:flex; flex-direction:column; gap:14px; }

.admin-card {
  border:1px solid rgba(255,255,255,0.07);
  border-radius:16px;
  padding:16px;
  background: rgba(255,255,255,0.03);
}

.admin-card-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
}

.admin-name { font-weight:900; font-size:18px; line-height:1.2; }

.badge-super {
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(1,206,96,0.35);
  background: rgba(1,206,96,0.10);
  color: rgba(255,255,255,0.92);
  font-weight:800;
  font-size:12px;
  flex:0 0 auto;
}

.admin-controls {
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:14px;
}

.admin-meta {
  border:1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  border-radius:14px;
  padding:12px;
}

.admin-actions {
  border:1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  border-radius:14px;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.admin-row {
  display:grid;
  grid-template-columns: 140px 1fr auto;
  gap:12px;
  align-items:end;
}

.admin-row.pass-row {
  grid-template-columns: 140px 1fr 1fr auto;
}

.admin-row.delete-row {
  grid-template-columns: 1fr auto;
  align-items:center;
}

.admin-row .field { margin:0 !important; }

.admin-row label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
  display:block;
}

/* ===== RESPONSIVE (ÖSSZEVONVA) ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 24px; }
  .title { font-size: 32px; }

  header {
    padding: 14px 18px;
    flex-wrap: wrap;
    gap: 16px;
  }

  header nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 6px;
  }

  .header-actions { order: 2; }

  .server-card { margin-top: 8px; }

  .shop-hero-top {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .form-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-count { margin-left: 0; }
}

@media (max-width: 980px) {
  .admin-controls { grid-template-columns: 1fr; }
  .admin-row,
  .admin-row.pass-row,
  .admin-row.delete-row { grid-template-columns: 1fr; }
}
#bg-wrap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#bg-particles{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
  mix-blend-mode: screen;
}

header, main, footer{
  position: relative;
  z-index: 2;
}

body{
  position: relative;
  overflow-x: hidden;
}
/* ===== Jelentkezés státusz színezés ===== */
.status-accepted{
  color:#01ce60;
  background:rgba(1,206,96,0.15);
  border:1px solid rgba(1,206,96,0.45);
}

.status-rejected{
  color:#ef4444;
  background:rgba(239,68,68,0.15);
  border:1px solid rgba(239,68,68,0.45);
}

.status-new{
  color:#facc15;
  background:rgba(250,204,21,0.15);
  border:1px solid rgba(250,204,21,0.45);
}

.status-unknown{
  color:#9ca3af;
  background:rgba(156,163,175,0.15);
  border:1px solid rgba(156,163,175,0.45);
}
.status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.status.accepted {
    background-color: rgba(0, 200, 0, 0.15);
    color: #3cff3c;
}

.status.rejected {
    background-color: rgba(200, 0, 0, 0.15);
    color: #ff4d4d;
}




