@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --color-light-gray: #E7E7E7;
  --color-cream: #FEE5A5;
  --color-dark-gray: #3D3D3D;
  --color-almost-black: #262627;
  --color-accent: #FEE5A5;
  --color-accent-dark: #3D3D3D;
  --color-bg: #262627;
  --color-text: #E7E7E7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  border-bottom: 1px solid rgba(231, 231, 231, 0.08);
  background: linear-gradient(90deg, #262627 0%, #3D3D3D 100%);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 29px;
  width: auto;
  display: block;
}

.logo-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-light-gray);
  opacity: 0.9;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.nav a:hover {
  background-color: rgba(254, 229, 165, 0.08);
  opacity: 1;
  transform: translateY(-1px);
}

.nav a.nav-active {
  background-color: rgba(254, 229, 165, 0.14);
  color: var(--color-cream);
}

main {
  flex: 1;
}

.hero {
  padding: 32px 0 24px;
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.15), transparent 55%),
              radial-gradient(circle at bottom right, rgba(61, 61, 61, 0.65), #262627 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-cream);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--color-light-gray);
  max-width: 640px;
}

.hero-panel {
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(254, 229, 165, 0.12), rgba(38, 38, 39, 0.9));
  border: 1px solid rgba(254, 229, 165, 0.28);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.hero-panel-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-panel-meta {
  font-size: 12px;
  color: rgba(231, 231, 231, 0.8);
  margin-bottom: 16px;
}

.hero-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 6px 0;
}

.hero-panel-row strong {
  font-weight: 600;
  color: var(--color-cream);
}

.hero-panel-divider {
  margin: 10px 0;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(254, 229, 165, 0.6), transparent);
}

.content {
  padding: 24px 0 40px;
}

.content-grid {
  display: grid;
  gap: 32px;
}

.content-image {
  margin: 16px 0 20px;
}

.content-image img {
  border-radius: 16px;
}

.content-main h2 {
  font-size: 20px;
  margin: 26px 0 10px;
  color: var(--color-cream);
}

.content-main h3 {
  font-size: 16px;
  margin: 20px 0 8px;
  color: var(--color-light-gray);
}

.content-main p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(231, 231, 231, 0.9);
}

.content-main ul,
.content-main ol {
  margin: 8px 0 12px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
}

.content-main li {
  margin: 3px 0;
}

.table-wrapper {
  margin: 16px 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(254, 229, 165, 0.25);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.12), rgba(38, 38, 39, 0.96));
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

thead {
  background: linear-gradient(90deg, rgba(254, 229, 165, 0.14), rgba(61, 61, 61, 0.9));
}

th,
td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(231, 231, 231, 0.08);
}

th {
  font-weight: 600;
  color: var(--color-cream);
}

tbody tr:nth-child(even) {
  background-color: rgba(38, 38, 39, 0.9);
}

tbody tr:nth-child(odd) {
  background-color: rgba(61, 61, 61, 0.6);
}

.aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-card {
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(254, 229, 165, 0.16), rgba(38, 38, 39, 0.95));
  border: 1px solid rgba(254, 229, 165, 0.25);
  padding: 16px 16px 18px;
}

.aside-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-cream);
}

.aside-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(231, 231, 231, 0.9);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background-color: rgba(38, 38, 39, 0.92);
  border: 1px solid rgba(231, 231, 231, 0.15);
  padding: 10px 12px;
}

.faq-q {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-cream);
}

.faq-a {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(231, 231, 231, 0.9);
}

.sta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(135deg, #FEE5A5 0%, #E7E7E7 40%, #FEE5A5 100%);
  color: #262627;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-decoration: none;
}

.sta-btn span {
  font-weight: 700;
}

.sta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65);
}

.sta-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.sta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

footer {
  border-top: 1px solid rgba(231, 231, 231, 0.08);
  background-color: #262627;
  padding: 14px 0 16px;
  font-size: 12px;
  color: rgba(231, 231, 231, 0.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.page-simple main {
  padding: 32px 0 40px;
}

.page-simple h1 {
  font-size: 26px;
  margin: 0 0 18px;
  color: var(--color-cream);
}

.page-simple h2 {
  font-size: 19px;
  margin: 24px 0 10px;
  color: var(--color-light-gray);
}

.page-simple p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(231, 231, 231, 0.9);
}

.page-simple ul {
  margin: 8px 0 12px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
}

.page-simple li {
  margin: 3px 0;
}

.page-simple .sta-group {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .hero-inner,
  .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 22px;
  }
}
