:root {
  --bg: #081427;
  --panel: #091d36cc;
  --border: #24466f;
  --text: #d8e5f7;
  --muted: #9fb4cf;
  --accent: #f7a93c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #173560 0%, #081427 45%, #061022 100%);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(247, 169, 60, 0.08) 20%, transparent 40%);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(3px);
}

.hero-art {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center top;
  background: #120b08;
  border-radius: 12px;
  border: 1px solid #355d90;
  margin-bottom: 14px;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

h1,
h2,
h3 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.6px;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.btn {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #3d5f8f;
  background: #1f3555;
  color: #e8f1ff;
  text-decoration: none;
  font-weight: 700;
}

.info-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.info-card {
  display: block;
  min-height: 150px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #375e8d;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(247, 169, 60, 0.12), rgba(10, 32, 57, 0.9) 36%);
  padding: 14px;
}

.info-card:hover {
  border-color: rgba(247, 169, 60, 0.85);
}

.info-card span {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 11px;
  border-radius: 10px;
  background: #1f3555;
  border: 1px solid #3d5f8f;
  color: #ffe3ae;
  font-weight: 700;
}

.guide-panel {
  padding: 12px;
}

.guide-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #355d90;
  background: #061022;
}

@media (max-width: 760px) {
  .hero-row {
    flex-direction: column;
  }

  .hero-art {
    height: 130px;
  }

  h1 {
    font-size: 1.8rem;
  }
}
