﻿:root {
  --accent: #d7ff00;
  --black: #000000;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent-soft: rgba(215, 255, 0, 0.22);
  --panel: rgba(8, 8, 8, 0.88);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--black);
  min-height: 100vh;
  line-height: 1.45;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 255, 0, 0.14), transparent 36%),
    radial-gradient(circle at 90% 85%, rgba(215, 255, 0, 0.09), transparent 42%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 24%);
  opacity: 0.18;
}

.pattern-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: 0;
}

.pattern-video-source {
  display: none;
}

.edge-stripes {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  opacity: 0.58;
  background-image: repeating-linear-gradient(
    -22deg,
    rgba(215, 255, 0, 0) 0px,
    rgba(215, 255, 0, 0) 13px,
    rgba(215, 255, 0, 0.72) 13px,
    rgba(215, 255, 0, 0.72) 15px
  );
  background-repeat: repeat;
  background-size: auto;
  background-position: 0 0;
  filter: blur(0.7px);
  will-change: transform;
}

.edge-stripes-bl {
  left: -220px;
  bottom: -180px;
  width: min(62vw, 900px);
  height: min(62vw, 900px);
  border-radius: 50%;
  mask-image: radial-gradient(circle at 42% 58%, #000 46%, rgba(0, 0, 0, 0) 74%);
  animation: none;
}

.edge-stripes-tr {
  right: -220px;
  top: -180px;
  width: min(62vw, 900px);
  height: min(62vw, 900px);
  border-radius: 50%;
  transform: rotate(180deg);
  mask-image: radial-gradient(circle at 42% 58%, #000 46%, rgba(0, 0, 0, 0) 74%);
  animation: none;
}

.topbar {
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shell {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(215, 255, 0, 0.92), rgba(215, 255, 0, 0.72));
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.68);
  transform-origin: center;
}

.brand {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--text);
}

.tag {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 4px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.tab {
  border: 1px solid transparent;
  background: transparent;
  color: #d9d9d9;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: 180ms ease;
}

.tab:hover {
  color: var(--text);
  border-color: var(--line-soft);
}

.tab.active {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

.main {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 0 20px 34px;
  position: relative;
  z-index: 1;
}

.page {
  display: none;
  animation: appear 260ms ease;
}

.page.active {
  display: block;
}

.content-card {
  position: relative;
  border: 1px solid rgba(215, 255, 0, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    var(--panel);
  border-radius: 24px;
  padding: clamp(22px, 3.2vw, 38px);
  box-shadow:
    0 0 0 1px rgba(215, 255, 0, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.68),
    0 0 34px rgba(215, 255, 0, 0.08);
}

.content-card::before,
.intro-highlight::before,
.post::before,
.service::before,
.review::before,
.service-plan::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(215, 255, 0, 0.16), rgba(215, 255, 0, 0) 55%);
  opacity: 0.36;
}

body.glow-off .content-card::before,
body.glow-off .intro-highlight::before,
body.glow-off .post::before,
body.glow-off .service::before,
body.glow-off .review::before,
body.glow-off .service-plan::before {
  opacity: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
}

h2,
h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.42rem, 3vw, 2.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.03rem;
  font-weight: 700;
}

p {
  margin-top: 0;
}

.content-card p {
  max-width: 68ch;
  color: #dfdfdf;
}

.intro-list {
  margin: 0 0 14px 20px;
  padding: 0;
  color: #d7d7d7;
}

.intro-list li {
  margin-bottom: 6px;
}

.intro-highlight {
  position: relative;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 255, 0, 0.14);
  background: rgba(0, 0, 0, 0.52);
  border-radius: 10px;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.58),
    0 0 20px rgba(215, 255, 0, 0.06);
}

.intro-highlight h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.trust-block {
  margin-top: 14px;
}

.trust-group {
  margin-top: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--line-soft);
}

.trust-group h4 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 1rem;
}

.game-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-group ul {
  margin: 0 0 4px 18px;
  padding: 0;
}

.trust-group li {
  margin-bottom: 6px;
}

.trust-group a {
  color: #6eb7ff;
  text-decoration: none;
}

.trust-group a:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  font: inherit;
  border-radius: 12px;
  padding: 10px 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
}

.btn-primary:hover {
  filter: brightness(0.97);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

.list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.post,
.service,
.review {
  position: relative;
  margin: 0;
  border: 1px solid rgba(215, 255, 0, 0.15);
  background: rgba(0, 0, 0, 0.52);
  border-radius: 16px;
  padding: 15px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(215, 255, 0, 0.07);
}

.post h3,
.service h3 {
  margin-bottom: 8px;
}

.post p,
.service p,
.review {
  color: #d2d2d2;
}

.post.clickable {
  cursor: pointer;
  transition: 180ms ease;
}

.post.clickable:hover {
  border-color: var(--accent-soft);
  transform: translateY(-1px);
}

.service h3 {
  color: var(--accent);
}

.service-order-main-btn {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(215, 255, 0, 0.2);
}

.service-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.service-scroll-arrow {
  font-size: 1.2rem;
  line-height: 1;
  animation: serviceArrowPulse 1.2s infinite ease-in-out;
}

@keyframes serviceArrowPulse {
  0% { transform: translateY(0); opacity: 0.75; }
  50% { transform: translateY(4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.75; }
}

.services-stack {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-plan {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(215, 255, 0, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.52);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(215, 255, 0, 0.07);
}

.service-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-plan h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 1rem;
}

.service-price {
  margin: 0 0 8px;
  color: #f1f1f1;
}

.service-gear {
  display: block;
  width: 56px;
  height: 56px;
  margin: 8px auto 12px;
  object-fit: contain;
}

.service-note {
  margin: 0 0 8px;
  color: #d6d6d6;
}

.service-note-strong {
  font-weight: 700;
  color: #ececec;
}

.service-plan ul {
  margin: 0 0 6px;
  padding-left: 14px;
}

.service-plan li {
  margin: 6px 0;
  color: #e0e0e0;
}

.auth-form,
.review-form {
  margin-top: 16px;
  max-width: 520px;
}

.field {
  display: block;
  margin-bottom: 12px;
}

.field span {
  display: block;
  margin-bottom: 7px;
  color: #d5d5d5;
  font-size: 0.88rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
  outline: none;
}

.file-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-btn {
  min-width: 150px;
}

.file-name {
  color: var(--muted);
  font-size: 0.9rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(215, 255, 0, 0.12);
}

.status {
  min-height: 22px;
  color: var(--muted);
}

.review {
  line-height: 1.55;
}

.review cite {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.review-image {
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  object-fit: cover;
  max-height: 320px;
}

.review-delete-btn {
  margin-top: 12px;
}

.post-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin: 10px 0 16px;
  border: 1px solid var(--line);
}

.back-btn {
  margin-bottom: 12px;
}

.footer {
  max-width: 1120px;
  margin: 8px auto 28px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  color: #d8d8d8;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-title {
  margin: 0 0 6px;
  color: var(--accent);
  font-weight: 700;
}

.footer-contact-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact-box {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
  padding: 9px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-decoration: none;
  color: #dcdcdc;
  background: rgba(255, 255, 255, 0.02);
  transition: 160ms ease;
}

.footer-contact-box:hover {
  border-color: rgba(215, 255, 0, 0.35);
  color: var(--accent);
}

.copy {
  margin: 0;
  color: #8f8f8f;
  align-self: end;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .topbar {
    margin-top: 14px;
  }

  .tabs {
    width: 100%;
    border-radius: 16px;
  }

  .tab {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    border-radius: 12px;
  }

  .main {
    margin-top: 14px;
  }

.content-card {
    border-radius: 18px;
  }
}

body.glow-off .content-card,
body.glow-off .intro-highlight,
body.glow-off .post,
body.glow-off .service,
body.glow-off .review,
body.glow-off .service-plan {
  box-shadow: none;
  border-color: var(--line-soft);
}
