/* === Base reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #0b0d10;
  color: #e6e8eb;
  line-height: 1.7;
}

@media only screen and (min-width: 2400px) {
  body {
    font-size: 1.5em !important;
  }
}


.lang-content.is-visible h1 {
  line-height: 126%;
  margin-bottom: 3rem;
}

/* === Layout === */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero-content,
.container {
  max-width: 900px;
  margin: 0 auto;
    padding: 48px 24px;
}

/* === Header === */
.hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

}

.hero-content {
  position: relative;
  padding: 64px 20px;
  max-width: 900px;
}


.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 2px 4px #000000;
  line-height: 1.1;
}


.hero p.meta {
  font-size: 0.95rem;
  color: #aab0bb;
}

/* === Article === */
article {
  margin-top: 64px;
}

article h2 {
  font-size: 1.9rem;
  margin: 64px 0 16px;
}

article p {
  margin-bottom: 20px;
  color: #d6d9df;
}

article hr {
  border: none;
  border-top: 1px solid #22262e;
  margin: 56px 0;
}

article blockquote {
  margin: 48px 0;
  padding: 24px 32px;
  background: #12151b;
  border-left: 4px solid #5f7cff;
  font-style: italic;
}

/* === Footer === */
footer {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid #22262e;
  font-size: 0.9rem;
  color: #9aa1ad;
}

footer a {
  color: #7c91ff;
  text-decoration: none;
}


.lang-switch{
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.lang-btn{
  appearance: none;
  border: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .2px;
}

.lang-btn.is-active{
  background: rgba(255,255,255,.12);
  color: #fff;
}

.lang-content.is-hidden{
  display: none;
}



    
        /* Nav */
        .top-nav {
            background-color: #000000;
            border-bottom: 1px solid #393939;
            padding: 15px 40px;
            font-family: 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 0.9rem;
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-link { text-decoration: none; color: var(--primary-color); font-weight: 600; }
        .nav-link:hover { color: var(--accent-color); }

