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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

.header {
  background: url('large_thumb_1908_660_0_0_auto_2_61d9a61df8.webp') no-repeat center/cover;
  color: #fff;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.burger {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

.hero {
  background: white;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero h1 {
  font-size: 26px;
  line-height: 1.3;
  max-width: 400px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: red;
  color: #fff;
  padding: 15px 25px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  background: darkred;
}

.placeholder {
  min-width: 200px;
  min-height: 150px;
  font-family: monospace;
  font-size: 16px;
  color: #333;
}

.footer {
  background: #000;
  color: #999;
  padding: 40px 0;
  text-align: left;
  font-size: 18px;
}

.footer a {
  color: #999;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid red;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


@media (max-width: 992px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px 0;
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}



.text-content {

  color: #1a1a1a;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 1rem;
  word-break: break-word;
}
.text-content p {
  margin-bottom: 1.2em;
}

.text-content h1 {
  font-size: 2rem;
  margin: 1.5em 0 0.5em;
  font-weight: 700;
}

.text-content h2 {
  font-size: 1.75rem;
  margin: 1.4em 0 0.5em;
  font-weight: 600;
}

.text-content h3 {
  font-size: 1.5rem;
  margin: 1.2em 0 0.5em;
  font-weight: 500;
}

.text-content ul,
.text-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1em;
}

.text-content li {
  margin-bottom: 0.5em;
}

.text-content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  margin: 1.5em 0;
}

.text-content code {
  font-family: "Courier New", monospace;
  background-color: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.95em;
}

.text-content pre {
  background-color: #f4f4f4;
  padding: 1em;
  overflow-x: auto;
  border-radius: 6px;
  margin: 1em 0;
}

.text-content a {
  color: #1e88e5;
  text-decoration: underline;
}

.text-content strong {
  font-weight: 600;
}

.text-content em {
  font-style: italic;
}

.text-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}

.text-content small {
  font-size: 0.875em;
  color: #777;
}
@media (max-width: 600px) {
  .text-content {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .text-content h1 {
    font-size: 1.5rem;
  }

  .text-content h2 {
    font-size: 1.25rem;
  }

  .text-content h3 {
    font-size: 1.1rem;
  }
}
