@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #1a1a1a;
    color: #ddd;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    user-select: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    padding: 15px 50px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #76b041;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #76b041;
}

.hero {
  position: relative;
  background: url('https://source.unsplash.com/1600x900/?military,shooter') no-repeat center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.sub-text {
  font-size: 14px;
  margin-top: 10px;
  color: #ccc;
}

.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 50px;
  flex-wrap: wrap;
  background-color: #181818;
}

.feature-card {
  background: #121212;
  border: 1px solid #76b041;
  padding: 25px;
  width: 280px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #76b041;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(118,176,65,0.8);
}

.download-hero {
  background: url('https://source.unsplash.com/1600x900/?download,pc') no-repeat center/cover;
  height: 400px;
}

.req-columns {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero h1 {
    font-size: 50px;
    color: #fff;
}

.hero p {
    font-size: 20px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #76b041;
    color: #121212;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #5a8c32;
}

.info {
    padding: 50px;
    background-color: #181818;
    flex: 1;
}

.info h2 {
    font-size: 32px;
    color: #76b041;
    margin-bottom: 15px;
}

footer {
    background-color: #121212;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    margin-top: auto;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #76b041;
    color: #121212;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background-color: #5a8c32;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #181818;
}

::-webkit-scrollbar-thumb {
    background: #4d4d4d;
    border-radius: 10px;
    transition: 0.3s;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #4d4d4d #181818;
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: #121212;
    border: 1px solid #76b041;
    color: #ddd;
    width: 220px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(118, 176, 65, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(118, 176, 65, 0.8);
}

.card i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #76b041;
}

.btn2 {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #76b041;
    color: #121212;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #5a8c32;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #76b041;
    border-radius: 5px;
    background: #121212;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: #76b041;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #222;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    text-decoration: none;
}

.faq-answer p {
    padding: 10px 0;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

a {
  color: inherit;
}

a.noline {
  text-decoration:none;
}

.requirements {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: left;
}

.requirements h2 {
    font-size: 28px;
    color: #76b041;
    margin-bottom: 15px;
    text-align: center;
}

.req-box {
    flex: 1;
    min-width: 250px;
    border: 1px solid #76b041;
    border-radius: 5px;
    background: #121212;
    padding: 20px;
    line-height: 1.6;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.req-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(118,176,65,0.8);
}

.contacts {
    padding: 50px 20px;
    text-align: center;
}

.contacts h2 {
    font-size: 28px;
    color: #76b041;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #121212;
    border: 1px solid #76b041;
    border-radius: 10px;
    width: 200px;
    padding: 30px 20px;
    text-align: center;
    color: #76b041;
    box-shadow: 0 0 10px rgba(118,176,65,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.contact-card i {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
}

.contact-card p {
    font-size: 18px;
    font-weight: 600;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(118,176,65,0.8);
}

.rules {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #111;
  border: 2px solid #76b041;
  border-radius: 12px;
  color: #ddd;
}

.rules h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #76b041;
}

.rule-block {
  margin-bottom: 25px;
  padding: 15px;
  border-left: 3px solid #76b041;
  background: #1a1a1a;
  border-radius: 6px;
}

.rule-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.rule-title.green {
  color: #76b041;
}

.rule-block ul {
  list-style: none;
  padding-left: 10px;
}

.rule-block ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.penalty {
  color: #ff4444;
  font-weight: bold;
}

.note {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
}

.contact-card img {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px auto;
    display: block;
}

.highlight-red {
    color: #ff4d4d;
    text-shadow: 0 0 1px #ff4d4d, 0 0 10px #ff1a1a;
    font-weight: bold;
}

.jndn-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #121212;
    border: 2px solid #76b041;
    color: #76b041;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(118,176,65,0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.jndn-btn:hover {
    background: #76b041;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(118,176,65,0.8);
}


    html {
      scroll-behavior: smooth;
    }

    .rules-anchor {
      position: fixed;
      top: 100px;
      left: 20px;
      background: #111;
      border: 2px solid #76b041;
      border-radius: 10px;
      padding: 15px 20px;
      z-index: 1000;
      max-width: 180px;
      font-size: 14px;
    }

    .rules-anchor h3 {
      color: #76b041;
      margin-bottom: 10px;
      font-size: 16px;
      text-align: left;
    }

    .rules-anchor ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .rules-anchor li {
      margin-bottom: 8px;
    }

    .rules-anchor a {
      color: #ddd;
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding: 4px 6px;
      border-radius: 4px;
      transition: all 0.3s;
    }

    .rules-anchor a:hover {
      color: #ff4d4d;
      text-shadow: 0 0 1px #ff4d4d, 0 0 6px #ff1a1a;
      background: rgba(255,0,0,0.1);
    }
