* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f7fb;

  background:
    radial-gradient(circle at top left, rgba(25, 227, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(123, 97, 255, 0.14), transparent 28%),
    #090b14;

  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 11, 20, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-logo span {
  background: linear-gradient(135deg, #19e3ff, #7b61ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-nav {
  display: flex;
  gap: 8px;
}

.header-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cfd6e6;
  font-size: 14px;
}

.header-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */

.hero {
  padding: 72px 0 48px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #19e3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(25, 227, 255, 0.08);
  border: 1px solid rgba(25, 227, 255, 0.24);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 620px;
  color: #cfd6e6;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #19e3ff, #7b61ff);
  box-shadow: 0 18px 40px rgba(25, 227, 255, 0.18);
}

.secondary-btn {
  color: #dbe3f3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

/* Hero Card */

.hero-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero-card-label {
  margin: 0 0 12px;
  color: #19e3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card h2 {
  margin: 0 0 22px;
  font-size: 26px;
}

.hero-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-check-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  color: #e8edf7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-check-list li:last-child {
  border-bottom: none;
}

.hero-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19e3ff;
  font-weight: 900;
}

/* Section */

.section {
  padding: 10px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-label {
  margin: 0 0 10px;
  color: #19e3ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: #cfd6e6;
  line-height: 1.8;
}

/* Game Cards */

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.game-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  transition: 0.22s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 227, 255, 0.38);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(25, 227, 255, 0.08);
}

.game-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.game-tag,
.game-level {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.game-tag {
  color: #07111f;
  background: #19e3ff;
}

.game-level {
  color: #dbe3f3;
  background: rgba(255, 255, 255, 0.08);
}

.game-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.game-card p {
  margin: 0 0 22px;
  color: #cfd6e6;
  line-height: 1.75;
}

.game-link {
  color: #19e3ff;
  font-weight: 800;
}

.game-card {
  overflow: hidden;
  padding: 0;
}

.game-thumb {
  height: 150px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.25s ease;
  filter: brightness(0.82) saturate(0.9);
}

.game-card:hover .game-thumb img {
  transform: scale(1.05);
}

.game-card-body {
  padding: 24px;
}

/* Guide */

.beginner-section {
  padding-top: 40px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.guide-card p {
  margin: 0;
  color: #cfd6e6;
  line-height: 1.75;
}

/* Footer */

.site-footer {
  padding: 34px 0;
  color: #9aa7bd;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile */

@media (max-width: 900px) {
  .hero-inner,
  .game-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .game-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    height: 60px;
  }

  .site-logo {
    font-size: 15px;
  }

  .header-nav {
    gap: 4px;
  }

  .header-link {
    padding: 8px 9px;
    font-size: 12px;
  }

  .hero-card,
  .game-card,
  .guide-card {
    padding: 20px;
    border-radius: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }
}

/* Game Detail */

.game-detail-hero {
  padding: 72px 0 0px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #9aa7bd;
  font-weight: 700;
}

.back-link:hover {
  color: #19e3ff;
}

.game-detail-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.build-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.build-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #07111f;
  background: #19e3ff;
  font-size: 12px;
  font-weight: 900;
}

.build-card h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.build-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.build-specs li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.build-specs span {
  color: #9aa7bd;
}

.build-specs strong {
  text-align: right;
}

.build-comment {
  margin: 18px 0 0;
  color: #cfd6e6;
  line-height: 1.75;
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.info-card {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.info-card-wide {
  grid-column: span 2;
}

.info-label {
  margin: 0 0 10px;
  color: #19e3ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #cfd6e6;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .build-grid,
  .game-info-grid {
    grid-template-columns: 1fr;
  }

  .info-card-wide {
    grid-column: span 1;
  }

  .game-detail-hero {
    padding: 52px 0 24px;
  }
}
/* Detail Info Cards */

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.info-card {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.info-card-wide {
  grid-column: span 2;
}

.info-label {
  margin: 0 0 10px;
  color: #19e3ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #cfd6e6;
  line-height: 1.8;
}

.build-comment {
  margin: 18px 0 0;
  color: #cfd6e6;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .game-info-grid {
    grid-template-columns: 1fr;
  }

  .info-card-wide {
    grid-column: span 1;
  }
}
  .game-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(25,227,255,0.22),
    rgba(123,97,255,0.22)
  );
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.game-search {
  margin: 0 0 28px;
}

.game-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.game-search input::placeholder {
  color: #8f9bb0;
}

.game-search input:focus {
  border-color: rgba(25, 227, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(25, 227, 255, 0.12);
}

.empty-message {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 24px;
  color: #cfd6e6;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-guide-box {
  margin-top: 12px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.03)
    );
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  max-width: 420px;
}

.related-guide-box p {
  margin: 0 0 16px;
  color: #cfd6e6;
}
/* Related Sites */

.related-sites-section {
  padding-top: 16px;
  padding-bottom: 80px;
}

.related-site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.related-site-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 24px 28px;
  border-radius: 100px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      rgba(25, 227, 255, 0.18),
      rgba(123, 97, 255, 0.22)
    );
  border: 1px solid rgba(25, 227, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  transition: 0.22s ease;
}

.related-site-button:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 227, 255, 0.48);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(25, 227, 255, 0.1);
}

.related-site-mini {
  margin-bottom: 10px;
  color: #19e3ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.related-site-button span:not(.related-site-mini) {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
}

.related-site-button small {
  color: #d5dcef;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .related-site-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
  }

  .related-site-button {
    min-height: auto;
    padding: 20px 22px;
    border-radius: 28px;
  }
}