@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg: #0a0b1e;
  --bg-alt: #0e0f28;
  --bg-card: #141538;
  --primary: #f0a500;
  --primary-dark: #d4920a;
  --secondary: #7c5cbf;
  --secondary-dark: #6a4bad;
  --accent: #e84393;
  --text: #eaeaff;
  --text-muted: #8890b8;
  --border: #1e2052;
  --success: #00c896;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, .55);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, .35);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: .3s ease;
  --container: 1280px;
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: rgba(240, 165, 0, .12);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 165, 0, .28);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-left .section-subtitle {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #0a0b1e;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #0a0b1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, .38);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 92, 191, .38);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #0a0b1e;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .85rem;
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.05rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 11, 30, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 11, 30, .98);
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 38px;
  width: auto;
}

.brand-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .5px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 13px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.nav-link.btn-nav {
  background: var(--primary);
  color: #0a0b1e;
  padding: 8px 18px;
  margin-left: 10px;
  font-weight: 700;
}

.nav-link.btn-nav:hover {
  background: var(--primary-dark);
  color: #0a0b1e;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .35s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 11, 30, .97);
  overflow-y: auto;
  padding: 12px 16px 32px;
  z-index: 999;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 15px 16px;
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  border-radius: 0;
}

.mobile-menu .nav-link:hover {
  color: var(--primary);
  background: rgba(240, 165, 0, .07);
}

.mobile-menu .nav-link.btn-nav {
  background: var(--primary);
  color: #0a0b1e;
  border: none;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 11, 30, .97) 0%, rgba(14, 15, 40, .88) 55%, rgba(10, 11, 30, .92) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 191, .18) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, .12);
  border: 1px solid rgba(240, 165, 0, .3);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
}

.hero-badge i {
  font-size: .8rem;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 580px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.hero-visual {
  flex: 0 0 auto;
  width: 420px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.hero-visual-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.hvb-icon {
  width: 40px;
  height: 40px;
  background: rgba(240, 165, 0, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hvb-text strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

.hvb-text span {
  font-size: .78rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.feature-box:hover {
  border-color: rgba(240, 165, 0, .3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: rgba(240, 165, 0, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 22px;
}

.feature-icon.purple {
  background: rgba(124, 92, 191, .12);
  color: #a78fe8;
}

.feature-icon.teal {
  background: rgba(0, 200, 150, .1);
  color: var(--success);
}

.feature-icon.pink {
  background: rgba(232, 67, 147, .1);
  color: var(--accent);
}

.feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(240, 165, 0, .14);
  border-color: rgba(240, 165, 0, .35);
}

.game-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.08);
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #0a0b1e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}

.game-badge.purple {
  background: var(--secondary);
  color: var(--white);
}

.game-badge.teal {
  background: var(--success);
  color: #0a0b1e;
}

.game-badge.pink {
  background: var(--accent);
  color: var(--white);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 30, .75) 0%, transparent 50%);
}

.game-card-body {
  padding: 18px 20px 20px;
}

.game-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.game-desc {
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-rating {
  color: var(--primary);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-provider {
  font-size: .78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .05);
  padding: 3px 8px;
  border-radius: 4px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 165, 0, .3);
  box-shadow: var(--shadow);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}

.blog-card-title a {
  color: inherit;
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

.article-header {
  padding: 100px 0 70px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.article-header-bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.article-category {
  display: inline-block;
  background: rgba(240, 165, 0, .12);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(240, 165, 0, .28);
}

.article-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
  max-width: 860px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: .85rem;
  color: var(--text-muted);
}

.article-meta i {
  color: var(--primary);
  margin-right: 4px;
}

.article-featured-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 48px;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 44px 0 18px;
  line-height: 1.2;
}

.article-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 14px;
}

.article-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 26px 0 10px;
}

.article-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.92;
  margin-bottom: 22px;
}

.article-content ul, .article-content ol {
  margin: 0 0 22px 28px;
  color: var(--text);
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 18px 26px;
  margin: 32px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.05rem;
}

.article-content img {
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-post-img {
  flex-shrink: 0;
  width: 64px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-post-title a {
  color: inherit;
}

.sidebar-post-title a:hover {
  color: var(--primary);
}

.sidebar-post-date {
  font-size: .75rem;
  color: var(--text-muted);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(240, 165, 0, .4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  color: var(--white);
  transition: color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: rgba(240, 165, 0, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .78rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #0a0b1e;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: .93rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 30, .65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.search-input-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.search-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--primary);
}

.glossary-letter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 44px;
}

.letter-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.letter-btn:hover,
.letter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0a0b1e;
}

.glossary-group {
  margin-bottom: 52px;
}

.glossary-letter-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.glossary-term {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}

.glossary-term:hover {
  border-color: rgba(240, 165, 0, .3);
}

.term-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.term-def {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.breadcrumb-wrap {
  padding: 16px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--border);
  font-size: .7rem;
}

.breadcrumb-active {
  color: var(--text);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(240, 165, 0, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-value {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--text);
}

.contact-info-value a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .88rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0a0b1e;
  transform: translateY(-3px);
}

.tag {
  display: inline-block;
  background: rgba(124, 92, 191, .12);
  color: #a78fe8;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(124, 92, 191, .22);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.badge-primary {
  background: rgba(240, 165, 0, .18);
  color: var(--primary);
}

.badge-secondary {
  background: rgba(124, 92, 191, .18);
  color: #a78fe8;
}

.badge-success {
  background: rgba(0, 200, 150, .18);
  color: var(--success);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-box-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0f38 0%, #1a0c42 50%, #0e0f38 100%);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 165, 0, .12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-title span {
  color: var(--primary);
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-header {
  padding: 100px 0 64px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-title span {
  color: var(--primary);
}

.page-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  padding-top: 114px;
}

.error-code {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.error-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 38px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.search-form-404 {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 36px;
}

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1;
}

.footer-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 26px;
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: .83rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: .83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

.step-list {
  counter-reset: step-counter;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #0a0b1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.info-box {
  background: rgba(240, 165, 0, .08);
  border: 1px solid rgba(240, 165, 0, .25);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
}

.info-box i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.fw-600 { font-weight: 600; }
.color-primary { color: var(--primary); }
.color-muted { color: var(--text-muted); }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-box:nth-child(2n) { border-right: none; }
  .stat-box:nth-child(1), .stat-box:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
}

@media (max-width: 992px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .step-item { flex-direction: column; gap: 14px; }
  .search-form-404 { flex-direction: column; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-box { border-bottom: 1px solid var(--border); }
  .stat-box:last-child { border-bottom: none; }
  .container { padding: 0 16px; }
}
