:root {
  --bg-dark: #0a0d12;
  --bg-card: rgba(16, 22, 30, 0.85);
  --bg-card-hover: rgba(24, 33, 46, 0.95);
  --accent-orange: #ff6b00;
  --accent-orange-glow: rgba(255, 107, 0, 0.4);
  --accent-amber: #e69500;
  --text-main: #f0f4f8;
  --text-muted: #9aa8b6;
  --text-dim: #64748b;
  --border-color: rgba(255, 107, 0, 0.25);
  --border-glow: rgba(255, 107, 0, 0.6);
  --font-heading: 'Orbitron', sans-serif;
  --font-subheading: 'Rajdhani', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.25s ease;
}

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


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


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-main);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: 8px;
  box-shadow: 0 0 10px var(--accent-orange);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.subhead {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: #ff6b00;
  border: 2px solid var(--accent-orange);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

  margin: 0;
  box-sizing: border-box;
}

.btn:hover {
  background: #ff7e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.btn:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: rgba(22, 28, 38, 0.8);
  border: 2px solid rgba(255, 107, 0, 0.5);
  color: var(--text-main);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--accent-orange);
}

.btn-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  fill: currentColor;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 13, 18, 0.96);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-main);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--text-main);
}


.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.65;
  filter: brightness(0.9) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 18, 0.75);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--accent-orange);
  color: var(--accent-amber);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #d0d7de;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


.block2-section {
  position: relative;
  padding: 120px 0;
  background-image: url('../assets/images/block2-bg.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.block2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 18, 0.88);
  z-index: 1;
}

.block2-container {
  position: relative;
  z-index: 2;
}

.block2-left-content {
  max-width: 680px;
}

.block2-header p.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 620px;
}

.block2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.block2-cta-wrapper {
  margin-top: 32px;
}

.feature-card {
  background: #10161e;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--accent-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-orange);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}


.block3-section {
  position: relative;
  padding: 120px 0;
  background-image: url('../assets/images/block3-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.block3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 18, 0.85);
  z-index: 1;
}

.block3-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
  flex-shrink: 0;
}

.step-text {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}
  background: #10161e;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.stat-box h3,
.stat-box h4 {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.stat-box p {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin: 0;
}


.contact-section {
  padding: 100px 0;
  background: #07090d;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: #10161e;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

.channels-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--accent-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-orange);
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--accent-orange);
}

.map-container {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(1.2);
}


.social-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  list-style: none;
}

.social-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(22, 28, 38, 0.8);
  border: 1px solid rgba(255, 107, 0, 0.3);
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.social-link-item a:hover {
  background: rgba(255, 107, 0, 0.2);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.social-link-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


.page-header {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 40px;
  background: #0d121a;
  border-bottom: 1px solid var(--border-color);
}

.article-content {
  padding: 60px 0 100px 0;
}

.article-body {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: #ffffff;
  border-left: 3px solid var(--accent-orange);
  padding-left: 12px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--accent-amber);
}

.article-body p {
  font-size: 1.05rem;
  color: #c0cbdb;
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 24px;
  padding-left: 28px;
  color: #c0cbdb;
}

.article-body li {
  margin-bottom: 8px;
}


.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #0f151f;
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-window {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--accent-orange);
}

.modal-close-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(6, 9, 14, 0.9);
  border: 1px solid var(--border-color);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.4);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 17, 25, 0.96);
  border-top: 2px solid var(--accent-orange);
  padding: 24px 0;
  z-index: 1500;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 820px;
}

.cookie-text a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}


.footer {
  background: #05070a;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  padding: 60px 0 30px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 320px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1rem;
  color: var(--accent-amber);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}


.mobile-cta-item {
  display: none;
}

@media (max-width: 1070px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 610px) {
  #header-play-btn {
    display: none !important;
  }

  .mobile-cta-item {
    display: block;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .block2-grid {
    grid-template-columns: 1fr;
  }

  .block2-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .block3-section {
    padding: 80px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cookie-container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 24px;
  }

  .contact-info-card {
    padding: 24px 16px;
    clip-path: none;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 20px;
  }

  .contact-item-icon {
    width: 36px;
    height: 36px;
  }

  .contact-item-icon svg {
    width: 18px;
    height: 18px;
  }

  .social-links-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .social-link-item {
    width: 100%;
  }

  .social-link-item a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 14px;
    font-size: 0.85rem;
    word-break: break-all;
    box-sizing: border-box;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 18px;
  }

  .contact-info-card {
    padding: 20px;
  }
}