/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
/* ===== HERO ===== */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 24px;
}

/* текст */

.hero-title{
  font-size:110px;
  font-weight:900;
  letter-spacing:6px;
  line-height:1;
}

/* описание */

.hero-sub{
  margin-top:24px;
  font-size:20px;
  color:#aaa;
}

/* ===== PHONE ===== */

@media (max-width:600px){

.hero-title{
font-size:100px;
letter-spacing:3px;
}

.hero-sub{
font-size:16px;
}

}


/* ===== SECTION ===== */
.section {
  padding: 120px 0;
}

.section.dark {
  background: #000;
}

.section h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 48px;
}

/* ===== OUR GAMES (ЕДИНСТВЕННОЕ ИЗМЕНЕНИЕ) ===== */
.games {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← ЗАНИМАЕТ ВЕСЬ КОНТЕЙНЕР */
  gap: 24px;
}

.game {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.game img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.game p {
  margin-top: 16px;
  font-size: 14px;
  color: #aaa;
}

.game h3 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  font-weight: 900;
}

.stat p {
  margin-top: 8px;
  color: #aaa;
}

/* ===== IMAGE STRIP ===== */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.image-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* ===== FEATURE ===== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature img {
  width: 100%;
  object-fit: cover;
}

.feature h3 {
  font-size: 42px;
  font-weight: 900;
}

.feature p {
  margin-top: 24px;
  color: #aaa;
  max-width: 480px;
}

/* ===== VALUES ===== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.value h4 {
  font-size: 20px;
  font-weight: 900;
}

.value p {
  margin-top: 12px;
  color: #aaa;
  font-size: 14px;
}

/* ===== NEWS ===== */
.news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post h4 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 900;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
}

.cta h2 {
  font-size: 56px;
}

.cta button {
  margin-top: 32px;
  padding: 14px 32px;
  font-weight: 900;
  border: none;
  background: #fff;
  color: #000;
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 80px 0;
  text-align: center;
  color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: 36px;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  width: 100%;
}

.faq-item {
  border-top: 1px solid #222;
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #222;
}

.faq-question {
  width: 100%;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 720px;
  margin-top: 16px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CONTACT ADMIN ===== */
.contact {
  max-width: 600px;
}

.contact p {
  color: #aaa;
  margin-bottom: 24px;
  line-height: 1.6;
}

.copy-email{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;

  background:#111;
  border:1px solid #222;


  cursor:pointer;
  font-weight:700;
}

.copy-email:hover{
  background:#181818;
}

.copy-icon{
  display:flex;
  align-items:center;
}

.check{
  color:#00ff66;
}

/* ===== ANECDOTES ===== */
.anecdotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px;
}

.anecdote {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
}

.anecdote span {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
}

/* ===== OUR GAMES ADAPTIVE ===== */
@media (max-width: 1024px) {
  .games {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .games {
    grid-template-columns: 1fr;
  }
}