/*
 * PROJECT: allgohere.com
 * DOMAIN: allgohere.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Геймификация (фиолетовый #6c5ce7, жёлтый #ffd93d)
 * - Effect: Neon Glow
 * - Fonts: Fredoka One (heading) + Quicksand (body)
 * - Buttons: 3D Effect
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Quicksand:wght@400;500;600;700&display=swap');

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gm-purple:       #6c5ce7;
  --gm-purple-dark:  #4a3db5;
  --gm-purple-light: #a29bfe;
  --gm-yellow:       #ffd93d;
  --gm-yellow-dark:  #e6c200;
  --gm-pink:         #fd79a8;
  --gm-cyan:         #74b9ff;
  --gm-green:        #55efc4;
  --gm-bg:           #1a1440;
  --gm-bg-card:      #251c6b;
  --gm-bg-section:   #1f1855;
  --gm-text:         #e8e4ff;
  --gm-text-muted:   #a29bfe;
  --gm-border:       rgba(108,92,231,0.35);

  --font-heading: 'Fredoka One', cursive;
  --font-body:    'Quicksand', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-glow-purple: 0 0 18px rgba(108,92,231,0.65), 0 0 40px rgba(108,92,231,0.35);
  --shadow-glow-yellow: 0 0 16px rgba(255,217,61,0.7),  0 0 36px rgba(255,217,61,0.35);
  --shadow-card:        0 8px 32px rgba(0,0,0,0.45);

  --header-height: 68px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--gm-bg);
  color: var(--gm-text);
  line-height: 1.7;
  overflow-x: hidden;
}

html, body { overflow-x: hidden !important; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--gm-yellow);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--gm-text); }

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--gm-bg-section);
}

/* ===================== STARS ===================== */
.stars { color: #ffc107; }

/* ===================== LOGO ===================== */
.logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gm-yellow);
  letter-spacing: 1px;
  text-shadow: var(--shadow-glow-yellow);
  transition: text-shadow 0.3s;
}
.logo:hover {
  text-shadow: 0 0 28px rgba(255,217,61,0.95), 0 0 60px rgba(255,217,61,0.5);
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,20,64,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gm-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

/* ===================== NAV ===================== */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gm-text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gm-yellow);
  background: rgba(255,217,61,0.08);
}

.nav__cta {
  background: var(--gm-yellow);
  color: var(--gm-bg);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 0 var(--gm-yellow-dark), var(--shadow-glow-yellow);
  transform: translateY(0);
  transition: transform 0.12s, box-shadow 0.12s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--gm-yellow-dark), var(--shadow-glow-yellow);
  color: var(--gm-bg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.burger__line {
  width: 26px;
  height: 3px;
  background: var(--gm-yellow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger--active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger--active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger--active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: linear-gradient(135deg, #0f0c2e 0%, #1a1440 50%, #2d1f6e 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(108,92,231,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 30%, rgba(255,217,61,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,217,61,0.12);
  border: 1px solid rgba(255,217,61,0.35);
  border-radius: var(--radius-xl);
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gm-yellow);
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero__title {
  margin-bottom: 1.1rem;
  text-shadow: 0 0 30px rgba(255,217,61,0.4);
}

.hero__desc {
  font-size: 1.08rem;
  color: var(--gm-text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gm-yellow);
  display: block;
  text-shadow: var(--shadow-glow-yellow);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--gm-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__visual {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__game-card {
  position: relative;
  width: 280px;
  background: var(--gm-bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(108,92,231,0.5);
  overflow: hidden;
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.hero__game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero__game-label {
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gm-yellow);
  background: rgba(0,0,0,0.3);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s;
  white-space: nowrap;
}

.btn-play,
.btn--primary {
  background: var(--gm-yellow);
  color: var(--gm-bg);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  box-shadow: 0 6px 0 var(--gm-yellow-dark), var(--shadow-glow-yellow);
  transform: translateY(0);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-play:hover,
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--gm-yellow-dark), var(--shadow-glow-yellow);
  color: var(--gm-bg);
}
.btn-play:active,
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--gm-yellow-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--gm-purple-light);
  padding: 0.85rem 2rem;
  border: 2px solid var(--gm-purple);
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: 0 4px 0 rgba(108,92,231,0.4), var(--shadow-glow-purple);
}
.btn--secondary:hover {
  background: rgba(108,92,231,0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(108,92,231,0.4), var(--shadow-glow-purple);
  color: var(--gm-purple-light);
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gm-purple);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 0 var(--gm-purple-dark);
  transform: translateY(0);
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
}
.btn-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--gm-purple-dark), var(--shadow-glow-purple);
  color: #fff;
}
.btn-read:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--gm-purple-dark);
}

/* ===================== FEATURES ===================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  position: relative;
  background: var(--gm-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gm-border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.feature-card__icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card__title {
  font-size: 1.15rem;
  color: var(--gm-yellow);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--gm-text-muted);
  margin: 0;
}

/* ===================== HOW TO PLAY (HOMEPAGE SNIPPET) ===================== */
.howto__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-card {
  position: relative;
  background: var(--gm-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gm-border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-card__number {
  width: 52px;
  height: 52px;
  background: var(--gm-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-glow-purple);
}

.step-card__title {
  font-size: 1.1rem;
  color: var(--gm-yellow);
  margin-bottom: 0.5rem;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--gm-text-muted);
  margin: 0;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1f6e 0%, #1a1440 50%, #0f0c2e 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(108,92,231,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
}

.cta-section__title {
  margin-bottom: 1rem;
}

.cta-section__desc {
  color: var(--gm-text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ===================== ARTICLE CARDS ===================== */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.article-card {
  position: relative;
  background: var(--gm-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gm-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.article-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--gm-purple-dark), var(--gm-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.article-card__content {
  padding: 1.5rem;
}

.article-card__tag {
  display: inline-block;
  background: rgba(255,217,61,0.12);
  color: var(--gm-yellow);
  border: 1px solid rgba(255,217,61,0.3);
  border-radius: var(--radius-xl);
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-size: 1.15rem;
  color: var(--gm-yellow);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  font-size: 0.8rem;
  color: var(--gm-text-muted);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===================== FAQ ===================== */
.faq__list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gm-text);
  transition: color 0.2s;
}

.faq__question:hover { color: var(--gm-yellow); }

.faq__icon {
  font-size: 1.3rem;
  color: var(--gm-purple-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--gm-yellow);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
  color: var(--gm-text-muted);
  font-size: 0.93rem;
}

.faq__item--open .faq__answer {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}

/* ===================== SECTION HEADING ===================== */
.section__heading {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__sub {
  text-align: center;
  color: var(--gm-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================== GAME EMBED ===================== */
.game-embed {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.game-embed__frame {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/10;
  border: 3px solid var(--gm-purple);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.game-embed__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0f0c2e;
  border-top: 1px solid var(--gm-border);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin-top: 0.75rem;
  max-width: 240px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gm-yellow);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--gm-yellow); }

.footer__bottom {
  border-top: 1px solid var(--gm-border);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--gm-text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.2rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--gm-text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--gm-yellow); }

/* ===================== PAGE HERO (INNER PAGES) ===================== */
.page-hero {
  background: linear-gradient(135deg, #0f0c2e 0%, #1a1440 100%);
  padding: 64px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--gm-border);
}

.page-hero__title {
  margin-bottom: 0.75rem;
}

.page-hero__sub {
  color: var(--gm-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== PROSE (ARTICLE CONTENT) ===================== */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gm-purple-light);
}

.prose p { margin-bottom: 1.1rem; }

.prose ul, .prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
  color: var(--gm-text);
  list-style: disc;
}

.prose ol li { list-style: decimal; }

.prose strong { color: var(--gm-yellow); }

.prose a {
  color: var(--gm-purple-light);
  text-decoration: underline;
}

.prose blockquote {
  border-left: 4px solid var(--gm-purple);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--gm-text-muted);
  font-style: italic;
}

/* ===================== ARTICLE PAGE ===================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 60px 0;
}

.article-main {}

.article-sidebar {}

.sidebar-widget {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget__title {
  font-size: 1rem;
  color: var(--gm-yellow);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gm-border);
}

.sidebar-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-link-list a {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  transition: color 0.2s;
}

.sidebar-link-list a:hover { color: var(--gm-yellow); }

/* ===================== BLOG PAGE ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.blog-card {
  position: relative;
  background: var(--gm-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gm-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.blog-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--gm-purple-dark), var(--gm-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__tag {
  display: inline-block;
  background: rgba(255,217,61,0.12);
  color: var(--gm-yellow);
  border: 1px solid rgba(255,217,61,0.3);
  border-radius: var(--radius-xl);
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gm-yellow);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--gm-text-muted);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

/* ===================== CONTACT ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 60px 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info__label {
  font-weight: 700;
  color: var(--gm-yellow);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info__value {
  color: var(--gm-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===================== FORM ===================== */
.form {
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form__title {
  font-size: 1.3rem;
  color: var(--gm-yellow);
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--gm-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gm-purple);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.2);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__success {
  display: none;
  background: rgba(85,239,196,0.12);
  border: 1px solid rgba(85,239,196,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--gm-green);
  font-size: 0.93rem;
  margin-top: 1rem;
  text-align: center;
}

.form__success--visible {
  display: block;
}

/* ===================== ABOUT ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.team-card {
  position: relative;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-purple);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  background: var(--gm-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-glow-purple);
}

.team-card__name {
  font-size: 1rem;
  color: var(--gm-yellow);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--gm-text-muted);
}

/* ===================== VALUES ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  position: relative;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.value-card__icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card__title {
  font-size: 1.05rem;
  color: var(--gm-yellow);
  margin-bottom: 0.4rem;
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--gm-text-muted);
  margin: 0;
}

/* ===================== NOTICE BOXES ===================== */
.notice {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.notice--info {
  background: rgba(108,92,231,0.12);
  border: 1px solid rgba(108,92,231,0.3);
  color: var(--gm-purple-light);
}

.notice--warning {
  background: rgba(255,217,61,0.1);
  border: 1px solid rgba(255,217,61,0.3);
  color: var(--gm-yellow);
}

/* ===================== TABLE ===================== */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gm-border);
}

.data-table th {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gm-yellow);
  background: var(--gm-bg-section);
}

.data-table tr:hover td {
  background: rgba(108,92,231,0.06);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gm-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gm-text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gm-yellow); }

.breadcrumb__sep { opacity: 0.4; }

/* ===================== BACK LINK ===================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--gm-purple-light);
  transition: color 0.2s;
  margin-bottom: 1.5rem;
}

.back-link:hover { color: var(--gm-yellow); }

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 380px;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 9999;
}

.cookie-consent__text {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin-bottom: 1rem;
}

.cookie-consent__text a {
  color: var(--gm-purple-light);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
}

/* ===================== HOW-TO-PLAY PAGE ===================== */
.guide-section {
  padding: 60px 0;
}

.guide-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.control-card {
  position: relative;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.control-card__icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.control-card__title {
  font-size: 1.05rem;
  color: var(--gm-yellow);
  margin-bottom: 0.4rem;
}

.control-card__desc {
  font-size: 0.85rem;
  color: var(--gm-text-muted);
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tip-card {
  position: relative;
  background: var(--gm-bg-card);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.tip-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gm-purple);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-glow-purple);
}

.tip-card__title {
  font-size: 1.05rem;
  color: var(--gm-yellow);
  margin-bottom: 0.4rem;
}

.tip-card__desc {
  font-size: 0.88rem;
  color: var(--gm-text-muted);
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__inner { flex-direction: column; }
  .hero__visual { display: none; }
  .hero__stats { gap: 1.5rem; }

  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(26,20,64,0.98);
    border-bottom: 1px solid var(--gm-border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
  .nav__list--open { display: flex; }
  .nav__link { display: block; padding: 0.6rem 0.85rem; }
  .burger { display: flex; }

  .features__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cookie-consent {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .section { padding: 56px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .features__grid, .howto__steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}