/*
Theme Name: MC OGW Theme
*/

@import url("styles/header.css");
@import url("styles/hero.css");
@import url("styles/slider-nav.css");
@import url("styles/blogs.css");
@import url("styles/feature-block.css");
@import url("styles/footer.css");
@import url("styles/single.css");
@import url("styles/about-us.css");
@import url("styles/blog-posts.css");
@import url("styles/ogw-section.css");

:root {
  --primary-color: #00ff7f;
  --secondary-color: #6976d7;
  --light-green: #73aa28;
  --regular-green: #51881c;
  --dark-green: #52891c;
  --light-orange: #e19a1a;
  --regular-orange: #de7d13;
  --dark-orange: #c96910;
  --black: #121212;
  --gold: #ffd700;
  --dark-gray: #1a1a1a;
  --gray: #2a2a2a;
  --light-gray: #333333;
  --white: #ffffff;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  background-color: var(--black);
  color: var(--white);
  font-size: 1rem;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

p {
  font-size: 1rem;
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 1rem;
  margin: 0 auto;
}

.home-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.buttons .btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  margin: 0 0.6rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: center;
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--black);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.server-info {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #cccccc;
}

.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
}

.roboto-mono-bold {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* ===== Адаптив ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .home-container {
    padding: 0 1rem;
  }
}
