/*
 * PROJECT: golcerople.com
 * DOMAIN: golcerople.com
 * GAME: Super Ninja Adventure
 * 
 * DESIGN:
 * - CSS: BEM
 * - Palette: Баухаус (Red #e53935, Blue #1565c0, Yellow #fdd835)
 * - Effect: Brutalism
 * - Fonts: DM Serif Display (heading) + Archivo (body)
 * - Buttons: 3D Effect
 * 
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Archivo:wght@400;500;600;700;800;900&display=swap');

:root {
  --bauhaus-red: #e53935;
  --bauhaus-blue: #1565c0;
  --bauhaus-yellow: #fdd835;
  --bauhaus-black: #1a1a1a;
  --bauhaus-white: #f5f5f0;
  --bauhaus-gray: #e0e0e0;
  --bauhaus-dark-gray: #424242;
  --bauhaus-red-dark: #b71c1c;
  --bauhaus-blue-dark: #0d47a1;
  --bauhaus-yellow-dark: #f9a825;

  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Archivo', sans-serif;

  --border-width: 3px;
  --shadow-offset: 6px;
  --shadow-offset-sm: 4px;
  --radius: 0px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bauhaus-black);
  background-color: var(--bauhaus-white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stars {
  color: #ffc107;
}

/* ===== ARTICLE CARD PATTERN ===== */
.article-card {
  position: relative;
  background: var(--bauhaus-white);
  border: var(--border-width) solid var(--bauhaus-black);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--bauhaus-black);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  overflow: hidden;
}

.article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--bauhaus-black);
}

.article-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: var(--border-width) solid var(--bauhaus-black);
}

.article-card__content {
  padding: 20px;
}

.article-card__category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bauhaus-white);
  background: var(--bauhaus-red);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--bauhaus-black);
  margin-bottom: 10px;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--bauhaus-dark-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.article-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bauhaus-dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ===== OFFER CARD / GENERIC CARD ===== */
.offer-card,
.card {
  position: relative;
}

/* ===== HEADER ===== */
.header {
  background: var(--bauhaus-black);
  border-bottom: 4px solid var(--bauhaus-yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bauhaus-yellow);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.logo span {
  color: var(--bauhaus-red);
}

.logo:hover {
  color: var(--bauhaus-white);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-white);
  padding: 8px 14px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--bauhaus-yellow);
  border-color: var(--bauhaus-yellow);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-black);
  background: var(--bauhaus-yellow);
  border: 2px solid var(--bauhaus-black);
  padding: 10px 20px;
  box-shadow: var(--shadow-offset-sm) var(--shadow-offset-sm) 0 var(--bauhaus-black);
  transition: all 0.15s ease;
}

.header__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset-sm) + 2px) calc(var(--shadow-offset-sm) + 2px) 0 var(--bauhaus-black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger__line {
  width: 26px;
  height: 3px;
  background: var(--bauhaus-white);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  background: var(--bauhaus-blue);
  border-bottom: 4px solid var(--bauhaus-black);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--bauhaus-red);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-yellow);
  background: var(--bauhaus-black);
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 20px;
  border: 2px solid var(--bauhaus-yellow);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--bauhaus-white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--bauhaus-yellow);
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  border: 4px solid var(--bauhaus-black);
  box-shadow: 10px 10px 0 var(--bauhaus-black);
}

.hero__image-frame img {
  width: 100%;
  max-width: 400px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bauhaus-yellow);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 4px 4px 0 var(--bauhaus-black);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bauhaus-black);
  z-index: 3;
}

/* ===== BUTTONS ===== */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bauhaus-black);
  background: var(--bauhaus-yellow);
  border: 3px solid var(--bauhaus-black);
  padding: 16px 36px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--bauhaus-black);
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-play:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) + 3px) calc(var(--shadow-offset) + 3px) 0 var(--bauhaus-black);
}

.btn-play:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--bauhaus-black);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-white);
  background: transparent;
  border: 3px solid var(--bauhaus-white);
  padding: 13px 32px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 rgba(255,255,255,0.3);
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 rgba(255,255,255,0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-white);
  background: var(--bauhaus-red);
  border: 3px solid var(--bauhaus-black);
  padding: 14px 28px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--bauhaus-black);
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--bauhaus-black);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-black);
  background: transparent;
  border: 3px solid var(--bauhaus-black);
  padding: 12px 24px;
  box-shadow: var(--shadow-offset-sm) var(--shadow-offset-sm) 0 var(--bauhaus-black);
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--bauhaus-black);
  color: var(--bauhaus-white);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-red);
  background: transparent;
  border: 2px solid var(--bauhaus-red);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--bauhaus-black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--bauhaus-dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: var(--bauhaus-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  position: relative;
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 6px 6px 0 var(--bauhaus-black);
  padding: 36px 28px;
  transition: all 0.15s ease;
}

.feature-card:nth-child(1) {
  border-top: 6px solid var(--bauhaus-red);
}

.feature-card:nth-child(2) {
  border-top: 6px solid var(--bauhaus-blue);
}

.feature-card:nth-child(3) {
  border-top: 6px solid var(--bauhaus-yellow);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--bauhaus-black);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--bauhaus-black);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.6;
}

/* ===== GAME PREVIEW ===== */
.game-preview {
  padding: 100px 0;
  background: var(--bauhaus-black);
}

.game-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.game-preview__content {
  color: var(--bauhaus-white);
}

.game-preview__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-yellow);
  border: 2px solid var(--bauhaus-yellow);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 20px;
}

.game-preview__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--bauhaus-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.game-preview__text {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.game-preview__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--bauhaus-yellow);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}

.game-preview__frame {
  position: relative;
}

.game-preview__screen {
  border: 4px solid var(--bauhaus-yellow);
  box-shadow: 10px 10px 0 var(--bauhaus-yellow);
  background: #000;
  overflow: hidden;
}

.game-preview__screen img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.9;
}

.game-preview__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.2s;
}

.game-preview__play-overlay:hover {
  background: rgba(0,0,0,0.2);
}

.play-icon {
  width: 72px;
  height: 72px;
  background: var(--bauhaus-yellow);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 4px 4px 0 var(--bauhaus-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.15s;
}

.game-preview__play-overlay:hover .play-icon {
  transform: scale(1.1);
}

/* ===== CONTROLS SECTION ===== */
.controls-section {
  padding: 100px 0;
  background: var(--bauhaus-yellow);
  border-top: 4px solid var(--bauhaus-black);
  border-bottom: 4px solid var(--bauhaus-black);
}

.controls-section .section-title {
  color: var(--bauhaus-black);
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.control-item {
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 5px 5px 0 var(--bauhaus-black);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.control-item__key {
  min-width: 60px;
  height: 60px;
  background: var(--bauhaus-black);
  color: var(--bauhaus-yellow);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bauhaus-black);
  flex-shrink: 0;
}

.control-item__info {
  flex: 1;
}

.control-item__action {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bauhaus-black);
  margin-bottom: 6px;
}

.control-item__desc {
  font-size: 0.9rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.5;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 100px 0;
  background: var(--bauhaus-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.blog-section .section-header {
  margin-bottom: 48px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--bauhaus-blue);
}

.faq-section .section-title,
.faq-section .section-subtitle {
  color: var(--bauhaus-white);
}

.faq-section .section-label {
  color: var(--bauhaus-yellow);
  border-color: var(--bauhaus-yellow);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bauhaus-white);
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: rgba(255,255,255,0.05);
}

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bauhaus-yellow);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 28px 24px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--bauhaus-red);
  border-top: 4px solid var(--bauhaus-black);
  border-bottom: 4px solid var(--bauhaus-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '忍';
  position: absolute;
  font-size: 20rem;
  color: rgba(0,0,0,0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.cta-banner__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-yellow);
  border: 2px solid var(--bauhaus-yellow);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 20px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--bauhaus-white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn-play {
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bauhaus-black);
  border-top: 4px solid var(--bauhaus-yellow);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-yellow);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--bauhaus-yellow);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--bauhaus-white);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bauhaus-blue);
  border-bottom: 4px solid var(--bauhaus-black);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--bauhaus-red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.6;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-yellow);
  border: 2px solid var(--bauhaus-yellow);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--bauhaus-white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-to-play {
  padding: 100px 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 840px;
  margin: 0 auto 64px;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 6px 6px 0 var(--bauhaus-black);
  padding: 32px;
}

.step-item__number {
  min-width: 64px;
  height: 64px;
  background: var(--bauhaus-red);
  border: 3px solid var(--bauhaus-black);
  color: var(--bauhaus-white);
  font-family: var(--font-heading);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item:nth-child(even) .step-item__number {
  background: var(--bauhaus-blue);
}

.step-item__content {}

.step-item__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bauhaus-black);
  margin-bottom: 10px;
}

.step-item__text {
  font-size: 0.95rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.7;
}

.tips-section {
  padding: 80px 0;
  background: var(--bauhaus-yellow);
  border-top: 4px solid var(--bauhaus-black);
  border-bottom: 4px solid var(--bauhaus-black);
}

.tips-section .section-title {
  color: var(--bauhaus-black);
}

.tips-section .section-label {
  color: var(--bauhaus-black);
  border-color: var(--bauhaus-black);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 5px 5px 0 var(--bauhaus-black);
  padding: 28px;
}

.tip-card__emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.tip-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bauhaus-black);
  margin-bottom: 10px;
}

.tip-card__text {
  font-size: 0.9rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 100px 0;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-intro__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bauhaus-red);
  border: 2px solid var(--bauhaus-red);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 20px;
}

.about-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--bauhaus-black);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-intro__text {
  font-size: 1rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-values {
  padding: 80px 0;
  background: var(--bauhaus-black);
}

.about-values .section-title,
.about-values .section-subtitle {
  color: var(--bauhaus-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: transparent;
  border: 3px solid rgba(255,255,255,0.15);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.value-card:nth-child(1) { border-color: var(--bauhaus-red); }
.value-card:nth-child(2) { border-color: var(--bauhaus-blue); }
.value-card:nth-child(3) { border-color: var(--bauhaus-yellow); }
.value-card:nth-child(4) { border-color: var(--bauhaus-red); }

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--bauhaus-white);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== BLOG PAGE ===== */
.blog-page {
  padding: 100px 0;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  padding: 80px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.article-content {
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 6px 6px 0 var(--bauhaus-black);
  padding: 48px;
}

.article-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--bauhaus-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--bauhaus-black);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--bauhaus-black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 1rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}

.article-content ul li,
.article-content ol li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.6;
  border-bottom: 1px solid var(--bauhaus-gray);
}

.article-content ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--bauhaus-red);
  font-size: 0.7rem;
  top: 10px;
}

.article-content ol {
  counter-reset: ol-counter;
}

.article-content ol li {
  counter-increment: ol-counter;
}

.article-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--bauhaus-blue);
  font-weight: 700;
  font-size: 0.85rem;
  top: 9px;
}

.article-content blockquote {
  border-left: 6px solid var(--bauhaus-red);
  background: rgba(229, 57, 53, 0.06);
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--bauhaus-dark-gray);
  font-size: 1.05rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--bauhaus-black);
}

.article-meta__category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bauhaus-white);
  background: var(--bauhaus-red);
  padding: 4px 12px;
}

.article-meta__date,
.article-meta__read {
  font-size: 0.85rem;
  color: var(--bauhaus-dark-gray);
  font-weight: 600;
}

.article-sidebar {}

.sidebar-widget {
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 5px 5px 0 var(--bauhaus-black);
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bauhaus-black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--bauhaus-black);
}

.sidebar-play {
  background: var(--bauhaus-red);
  text-align: center;
}

.sidebar-play .sidebar-widget__title {
  color: var(--bauhaus-white);
  border-color: rgba(255,255,255,0.3);
}

.sidebar-play p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sidebar-play .btn-play {
  width: 100%;
  justify-content: center;
  background: var(--bauhaus-yellow);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bauhaus-blue);
  border-bottom: 1px solid var(--bauhaus-gray);
  padding-bottom: 12px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-link::before {
  content: '→';
  color: var(--bauhaus-red);
}

.sidebar-link:hover {
  color: var(--bauhaus-red);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form {
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 8px 8px 0 var(--bauhaus-black);
  padding: 40px;
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--bauhaus-black);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--bauhaus-black);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-black);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bauhaus-white);
  border: 2px solid var(--bauhaus-black);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bauhaus-black);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--bauhaus-blue);
  box-shadow: 4px 4px 0 var(--bauhaus-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bauhaus-black);
  margin-bottom: 20px;
}

.contact-info__text {
  font-size: 1rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bauhaus-white);
  border: 2px solid var(--bauhaus-black);
  box-shadow: 4px 4px 0 var(--bauhaus-black);
  padding: 20px;
}

.contact-info__icon {
  font-size: 1.5rem;
  min-width: 44px;
  height: 44px;
  background: var(--bauhaus-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bauhaus-dark-gray);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--bauhaus-black);
  font-weight: 600;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bauhaus-white);
  border: 3px solid var(--bauhaus-black);
  box-shadow: 8px 8px 0 var(--bauhaus-black);
  padding: 48px 56px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--bauhaus-black);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.legal-content ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--bauhaus-dark-gray);
  line-height: 1.6;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bauhaus-red);
}

.legal-content a {
  color: var(--bauhaus-blue);
  text-decoration: underline;
}

/* ===== DECORATIVE STRIPE ===== */
.bauhaus-stripe {
  height: 8px;
  background: linear-gradient(90deg, var(--bauhaus-red) 33.33%, var(--bauhaus-blue) 33.33% 66.66%, var(--bauhaus-yellow) 66.66%);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bauhaus-black);
  border-bottom: 4px solid var(--bauhaus-yellow);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav--open {
  display: flex;
}

.mobile-nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-white);
  padding: 14px 20px;
  border: 2px solid transparent;
  transition: all 0.15s;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--bauhaus-yellow);
  border-color: var(--bauhaus-yellow);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--bauhaus-black);
  border: 3px solid var(--bauhaus-yellow);
  box-shadow: 6px 6px 0 var(--bauhaus-yellow);
  padding: 24px;
  z-index: 200;
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.cookie-consent__text a {
  color: var(--bauhaus-yellow);
  text-decoration: underline;
}

.cookie-consent__btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.85rem;
}

.cookie-consent--hidden {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 40px;
  }

  .hero::before {
    display: none;
  }

  .hero {
    background: var(--bauhaus-blue);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-preview__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .about-intro__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .blog-page__grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .article-content {
    padding: 28px;
  }

  .contact-form {
    padding: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-preview__stats {
    gap: 20px;
  }

  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .step-item {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }
}