@font-face {
  font-family: 'JetBrains Mono';
  src: url('/JetBrainsMono-Regular.woff2') format('woff2'); /* */
  font-weight: 400; /* Соответствует Regular */
  font-style: normal;
  font-display: swap; /* */
}

/* Подключение шрифта JetBrains Mono Bold (если используется) */
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/JetBrainsMono-Bold.woff2') format('woff2'); /* */
  font-weight: 700; /* Соответствует Bold */
  font-style: normal;
  font-display: swap; /* */
}

body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#logo {
  margin-top: -100px;
  margin-bottom: -100px;
  width: 350px;
}

.hero, section {
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
      font-size: 0;
      line-height: 0;
      width: 0;
      height: 0;
      overflow: hidden;
      position: absolute;
      display: block;
    }

h1, h2, h3 {
  color: F6C944;
  margin-bottom: 20px;
  align-items: center;
}

p {
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-button {
  display: inline-block;
  background-color: transparent;
  color: #ffe082;
  border: 1px solid #ffe082;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cta-button:hover {
  background-color: #ffe082;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px 60px;
}

.feature-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  text-align: left;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  color: #C4C4C4;
  font-size: 14px;
  background-color: #0a0a0a;
}
footer a {
  color: #C4C4C4;
  text-decoration: none;
  margin: 0 8px;
  font-size: 14px;
}
footer a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: left;
}

.page-header {
  text-align: center;
  padding: 20px 0;
}

.page-header .logo {
  max-width: 150px;
  height: auto;
}

.container a {
  color: #ffe082;
}

.hero {
  text-align: center;
  padding: 2em 1em;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
}

.logo-wrapper svg {
  display: block;
}