:root {
  --color-primary: #ffad00;
  --color-primary-soft: rgba(255, 173, 0, 0.12);
  --color-bg: #f5f5f7;
  --color-white: #ffffff;
  --color-grey: #f3f3f5;
  --color-text: #111827;
  --color-text-soft: #6b7280;
  --color-border: #e5e7eb;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --transition-fast: 0.18s ease-out;
  --transition: 0.25s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; /* ← вот это добавляем */
}

body.page {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Generic */

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transform-origin: left center;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px) scale(1.02);
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 1.55rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 1.28rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(17, 24, 39, 0.04);
  transition: opacity var(--transition-fast);
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:hover {
  transform: scale(1.06);
}

.nav-link-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 12px 34px rgba(255, 173, 0, 0.5);
}

.nav-link-primary:hover {
  background: #ffba1f;
}

.nav-link-active {
  background: rgba(17, 24, 39, 0.04);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111827;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===========================
   HERO (FULLSCREEN, как DreamBig)
   =========================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 70px;
  overflow: hidden;

  background-image: url("assets/hero-image.png");
  background-size: cover;
  background-position: center;
}

/* виньетка по краям */
/* === CENTRAL DARK GRADIENT UNDER HERO CONTENT (FINAL OVERRIDE) === */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0) 65%
  );

  z-index: 0 !important;
}


.hero-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
  z-index: 1; /* поверх виньетки */
}

.hero-content {
  color: #ffffff;
}

.hero-content-center {
  margin: 0 auto;
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(4.2rem, 4vw + 1.8rem, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-subtitle {
  margin: 0 0 32px;
  font-size: 1.2rem;
  color: #e5e7eb;
}

/* КНОПКИ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* общий zoom для всех кнопок .btn */
.btn:hover {
  transform: scale(1.06);
}

/* Оранжевая кнопка */
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0px 40px rgba(255, 173, 0, 0.6);
}

.btn-primary:hover {
  background: #ffba1f;
  box-shadow: 0 0px 48px rgba(255, 173, 0, 0.7);
}

/* Белая кнопка */
.btn-outline {
  background: #f9fafb;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.18);
}

/* КНОПКИ В HERO — симметрично относительно центра (как палка у статов) */
.hero-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* левая зона — центр — правая зона */
  align-items: center;
  max-width: 420px;                     /* как у блока статы */
  margin: 20px auto 22px;               /* центрируем блок */
  column-gap: 40px;                     /* расстояние между кнопками */
}

/* Первая кнопка — справа от своей области (к центру) */
.hero-actions .btn:first-of-type {
  grid-column: 1;
  justify-self: end;
}

/* Вторая кнопка — слева от своей области (к центру) */
.hero-actions .btn:last-of-type {
  grid-column: 3;
  justify-self: start;
}

/* СТАТИСТИКА */

.hero-stats-inline {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* левая и правая одинаковые */
  align-items: flex-end;
  column-gap: 50px;
  max-width: 520px;
  margin: 6px auto 0;                  /* центр по странице */
}

.hero-stats {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

/* Блок статы (число + подпись) */
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;        /* центр по горизонтали */
  text-align: center;         /* текст по центру */
  padding-top: 16px;
  z-index: 1;
  transition: transform 0.28s ease;
  transform-origin: center;
}
/* ЛЕВЫЙ блок — прижат к палке, текст вправо */
.hero-stats-inline .hero-stat:first-of-type,
.hero-stats-inline .hero-stat:last-of-type {
  align-items: center;
  text-align: center;
}


/* Zoom при hover */
.hero-stat:hover {
  transform: scale(1.06);
}

.hero-stat-value,
.hero-stat-label-inline {
  position: relative;
  z-index: 2;
  transition: transform 0.28s ease;
}

/* число чуть сильнее */
.hero-stat:hover .hero-stat-value {
  transform: scale(1.09);
}

/* подпись чуть меньше */
.hero-stat:hover .hero-stat-label-inline {
  transform: scale(1.04);
}

/* число / подпись */

.hero-stat-value {
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-stat-label-inline {
  font-size: 1.2rem;
  color: #e5e7eb;
}

/* ПАЛКА ПО ЦЕНТРУ — всегда в средней колонке */
.hero-stat-separator {
  grid-column: 2;
  width: 1px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  align-self: center;
}

/* Цветные точки над числами */
.hero-stat::before {
  content: "";
  position: absolute;
  top: 8;
  left: 85%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* зелёная — Current Players */
.hero-stats-inline .hero-stat:first-of-type::before {
  background: #22c55e;
}

/* синяя — Total Visits */
.hero-stats-inline .hero-stat:last-of-type::before {
  background: #3b82f6;
}

/* GLOW под статами (ниже, чтобы не залезать под кнопки) */
.hero-stat::after {
  content: "";
  position: absolute;
  top: 50%;                        /* центр по высоте блока */
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -45%);/* чуть выше центра, под текстом */
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0;
  z-index: 1;
  background: transparent;
  transition: opacity 0.45s ease;
}

/* зелёный glow */
.hero-stats-inline .hero-stat:first-of-type:hover::after {
  background: radial-gradient(
    circle at center,
    rgba(34, 197, 94, 0.7) 0%,
    rgba(34, 197, 94, 0.22) 45%,
    transparent 100%
  );
  opacity: 1;
}

/* синий glow */
.hero-stats-inline .hero-stat:last-of-type:hover::after {
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.7) 0%,
    rgba(59, 130, 246, 0.22) 45%,
    transparent 100%
  );
  opacity: 1;
}

/* анимация точек */
@keyframes pulse-dot {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.6);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
}

/* Scroll down */

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #e5e7eb;
  font-size: 0.8rem;

  animation: scroll-float-all 1.8s ease-in-out infinite;
}

.scroll-down-text {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.scroll-down-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-down-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #f9fafb;
  border-bottom: 2px solid #f9fafb;
  transform: rotate(45deg);
}

/* плавное движение всего блока вверх–вниз */
@keyframes scroll-float-all {
  0% {
    bottom: 140px;
    opacity: 0.85;
  }
  50% {
    bottom: 150px;
    opacity: 1;
  }
  100% {
    bottom: 140px;
    opacity: 0.85;
  }
}


/* на всякий случай скрываем любые старые hero-media,
   если остались в html */
.hero-media,
.hero-image-wrapper,
.hero-image,
.hero-image-gradient {
  display: none !important;
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: 64px 0;
}

.section-white {
  background: #ffffff;
}

.section-grey {
  background: var(--color-grey);
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  margin: 0 0 8px;
  font-size: 2.8rem;
}

.section-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text-soft);
}

/* ===========================
   GAMES GRID
   =========================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

/* Карточка игры: по умолчанию только картинка, инфа — при hover */

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transform-origin: center;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.game-card-inner {
  position: relative;
  overflow: hidden;
}

.game-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

/* Оверлей с текстом — изначально скрыт */

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.32s ease-out, transform 0.32s ease-out,
    background 0.32s ease-out;
  text-align: center;
}

.game-card-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 10px;
  color: #ffffff;
}

.game-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  justify-content: center;
}

.game-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.game-stat-label {
  opacity: 0.8;
  color: #f9fafb;
}

.game-stat-value {
  font-weight: 600;
  color: #ffffff;
}

/* Hover: увеличиваем картинку + показываем оверлей + оранжевая рамка */

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.4);
  border-color: var(--color-primary);
}

.game-card:hover .game-card-image {
  transform: scale(1.08);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.86),
    rgba(255, 173, 0, 0.24)
  );
}

/* Section actions */

.section-actions {
  text-align: center;
  margin-top: 32px;
}

/* ===========================
   ABOUT BLOCK
   =========================== */

.about-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(229, 231, 235, 0.95);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 173, 0, 0.7);
}

.about-kicker {
  margin: 0 0 4px;
  font-size: 0.78rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.about-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* ===========================
   CONTACT BLOCK
   =========================== */

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.contact-btn img {
  width: 20px;
  height: 20px;
}

.contact-btn:hover,
.btn-copy:hover {
  transform: scale(1.06);
}




.contact-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 173, 0, 0.12),
    rgba(255, 255, 255, 0.95)
  );
  border: 1px solid rgba(255, 173, 0, 0.45);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.contact-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.contact-name {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.contact-role {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.contact-discord {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.9rem;
}

.contact-discord-label {
  font-weight: 500;
}

.contact-discord-tag {
  font-family: "Poppins", system-ui, sans-serif;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.btn-copy {
  font-size: 0.82rem;
  border-radius: 999px;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  background: var(--color-primary);
  color: #111827;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-copy:hover {
  background: #ffba1f;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 173, 0, 0.5);
}

.copy-feedback {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.copy-feedback.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Games hero on games.html */

.section-games-hero {
  padding-bottom: 24px;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: rgba(240, 241, 242, 0.96);
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 118px;
  height: 118px;
}

.footer-title {
  font-size: 2rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--color-text-soft);
}

.footer-links {
  display: flex;
  gap: 136px;
}

.footer-column h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-bottom: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-primary);
  transform: scale(1.04);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 880px) {
  .hero {
    padding: 110px 0 70px;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 16px 20px 18px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease-out, opacity 0.22s ease-out;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 10px;
  }

  .contact-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

/* КНОПКИ В HERO — выравниваем относительно невидимого центра, как у палки */

  .hero-title {
    font-size: 2.3rem;
  }
}

/* === FINAL HERO ACTIONS OVERRIDE === */
.hero-actions {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  max-width: 420px;
  margin: 40px auto 42px !important;
  column-gap: 10px; /* расстояние между кнопками — меняй это число */
}

.hero-actions .btn {
  min-width: 110px !important;   /* одинаковая ширина кнопок */
  white-space: nowrap !important;/* текст всегда в одну строку */
  text-align: center !important;
  justify-content: center !important;
}

/* первая кнопка — справа своей колонки (к центру) */
.hero-actions .btn:first-of-type {
  grid-column: 1 !important;
  justify-self: end !important;
}

/* вторая — слева своей колонки (к центру) */
.hero-actions .btn:last-of-type {
  grid-column: 3 !important;
  justify-self: start !important;
}

/* === FIX GAME-CARD OVERLAY ANIMATION (FADE-IN ONLY) === */

.game-card-overlay {
  opacity: 0;
  transform: none !important;          /* убираем движение */
  transition: opacity 0.32s ease-out !important;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
  transform: none !important;          /* фиксируем */
}

/* === SECOND BLOCK FULLSCREEN === */
#our-games {
  min-height: 80hv;            /* во весь экран */
  display: flex;
  flex-direction: column;
  justify-content: center;      /* центрируем содержимое по вертикали */
  padding-top: 120px;           /* небольшой отступ под header */
}

/* ==========================
   FIX: Bigger Titles + Button
   ========================== */

/* Поднимаем весь блок текста выше */
.section-header {
  margin-top: -80px;       /* поднимаем вверх */
  margin-bottom: 50px;     /* увеличиваем отступ вниз */
}

/* Увеличенный заголовок */
.section-title {
  font-size: 3.2rem;        /* было ~1.8rem → теперь в 1.5 раза больше */
  font-weight: 800;
}

/* Увеличенный подзаголовок */
.section-subtitle {
  font-size: 1.55rem;
  opacity: 0.95;
  margin-top: 8px;
}

/* Увеличиваем кнопку под гридом */
.section-actions .btn-primary {
  padding: 18px 46px;        /* больше кнопка */
  font-size: 1.25rem;
  border-radius: 999px;
}

/* Доп. отступ вниз (чтобы не липло к футеру) */
.section-actions {
  margin-top: 70px;
}

/* ===== OUR GAMES: bigger cards, но аккуратно ===== */

/* 4 колонки на десктопе, с нормальными отступами */
.games-grid {
  display: grid;
  max-width: 1600px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
  gap: 28px;
}

/* карточка немного крупнее и “толще” */
.game-card {
  border-radius: 26px;
}

/* увеличиваем картинку по высоте, сохраняя пропорции */
.game-card-image {
  height: 210px;        /* было 190px → чуть крупнее */
  object-fit: cover;
}

/* текст в оверлее чуть крупнее, чтобы не потеряться */
.game-card-title {
  font-size: 1.05rem;
}

.game-stat-pill {
  padding: 5px 11px;
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Чтобы якорный скролл не прятал заголовок под шапкой */
#our-games {
  scroll-margin-top: 80px; /* подгони под высоту твоего header'а */
}

#about {
  scroll-margin-top: 80px;
}

#contact {
  scroll-margin-top: 80px;
}

#hero {
  scroll-margin-top: 80px;
}

/* =====================================================
   ABOUT US — FULLSCREEN SECTION + CENTERED TITLE
   ===================================================== */

.about-section {
  min-height: 80vh;          /* весь экран */
  padding-top: 120px;         /* чтобы заголовок не прятался под хедером */
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;    /* центрируем по вертикали */
}

/* Центрируем заголовок, как в Our Games */
.about-section .section-header {
  text-align: center;
  margin-top: -80px;          /* поднимаем вверх */
  margin-bottom: 60px;        /* отступ до карточки */
}

.about-section .section-title {
  font-size: 3.2rem;
  font-weight: 800;
}

.about-section .section-subtitle {
  font-size: 1.55rem;
  opacity: 0.9;
}

/* Карточка About — оставляем как есть, только чуть больше */
.about-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 75px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

/* ============================================
   ABOUT CARD — Bigger + Dark Text
   ============================================ */

.about-card {
  max-width: 1000px;         /* УВЕЛИЧИЛ КАРТОЧКУ */
  padding: 60px 55px;        /* БОЛЬШЕ ВНУТРЕННИЕ ОТСТУПЫ */
  border-radius: 32px;
  margin: 0 auto;

  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);

  /* Более мягкая и широкая тень */
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.16);
}

/* Заголовок “Founded in 2025” */
.about-kicker {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ОСНОВНОЙ ТЕКСТ – ЧЕРНЫЙ */
.about-text {
  font-size: 1.45rem;
  line-height: 1.65;
  color: #111111;        /* ЧЁРНЫЙ ЦВЕТ */
  font-weight: 400;
}

/* ============================
   CONTACT SECTION (LIGHT THEME)
   ============================ */

.contact-section {
  padding: 120px 0;
  background: #ffffff;
  text-align: center;
}

.contact-header .section-title {
  font-size: 3rem;
  color: #111827;
}

.contact-header .section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-top: 10px;
}

/* Cards row */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-card {
  width: 260px;
  height: 150px;
  background: #ebedf0;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1f2937;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(0,0,0,0.12);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

/* Profile card */

.contact-profile-card {
  margin: 60px auto 0;
  max-width: 740px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  gap: 22px;
  padding: 26px 30px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
  align-items: center;
}

.contact-avatar {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.contact-name {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.contact-desc {
  color: #6b7280;
  font-size: 1rem;
}

.contact-discord-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}

.discord-icon-small {
  width: 18px;
  opacity: 0.9;
}

.copy-btn {
  background: #ffad00;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
  background: #ffbb2b;
  transform: scale(1.06);
}

.copy-feedback {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #16a34a;
  opacity: 0;
  transition: opacity 0.25s;
}
.copy-feedback.visible {
  opacity: 1;
}

/* ============================
   SCROLL REVEAL (for sections)
   ============================ */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(1px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    filter 0.7s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ======================
   Custom Scrollbar Style
   ====================== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;             /* ширина скроллбара */
}

::-webkit-scrollbar-track {
  background: transparent; /* убираем фон */
}

::-webkit-scrollbar-thumb {
  background: #b3b3b3;      /* серый ползунок */
  border-radius: 999px;     /* скругление */
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #9a9a9a;      /* чуть темнее при наведении */
}

/* Firefox */
* {
  scrollbar-width: thin;          /* тонкий */
  scrollbar-color: #b3b3b3 transparent; /* ползунок + прозрачный фон */
}

/* ============================================
   ALL GAMES PAGE — FULL STYLE ADAPTATION
   ============================================ */

/* Отступ сверху как в hero Our Games */
.section-games-hero {
  padding-top: 120px;
  padding-bottom: 40px;
}

/* Заголовок больше */
.section-games-hero .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Подзаголовок как на главной */
.section-games-hero .section-subtitle {
  font-size: 1.35rem;
  opacity: 0.95;
}

/* ============================================
   Сетка игр — 3 столбца
   ============================================ */
#allGamesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колонки */
  gap: 32px;
  margin-top: -100px;
}

/* Размер карточек — те же параметры, что и топовые игры на главной */
#allGamesGrid .game-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#allGamesGrid .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
}

#allGamesGrid .game-card-image {
  height: 240px; /* больше чем было */
  object-fit: cover;
}

/* ======================*

/* Hide scroll-down button on mobile */
@media (max-width: 768px) {
  #scrollDown {
    display: none !important;
  }
}

