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

body {
  background: linear-gradient(150deg, #fde68a, #fefce8);
  background-attachment: fixed;
  font-family: 'Space Grotesk', sans-serif;
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Instrument Serif', serif;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }
ul, ol { margin-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 6px; }

a { color: #d97706; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px auto;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 15px; }
.cookie-banner.hidden { display: none; }

/* Navbar */
.navbar {
  background: transparent;
  padding: 16px 0;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-logo {
  font-size: 1.7rem;
  color: #1a1a1a;
}
.site-logo a { color: inherit; text-decoration: none; }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}
.nav-links a { color: #4a4a4a; font-size: 15px; }
.nav-links a:hover { color: #d97706; text-decoration: none; }

/* Sections */
section { padding: 56px 0; }

.hero-text {
  max-width: 60%;
  text-align: left;
}

.about-block {
  max-width: 800px;
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cards */
.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }

/* Game card */
.game-card { display: flex; flex-direction: column; }
.game-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title-block { flex: 1; min-width: 0; }
.game-title-block h3 { margin-bottom: 4px; }
.game-dev { font-size: 14px; color: #808080; }
.badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}
.game-desc { font-size: 15px; margin-bottom: 14px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* Buttons */
.btn {
  background: #d97706;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; }
.btn-store { margin-top: auto; }

/* Subscribe form */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.form-card h2 { margin-bottom: 6px; }
.form-subtitle { color: #808080; margin-bottom: 20px; }

label { display: block; font-size: 14px; margin-bottom: 6px; color: #4a4a4a; }

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: 'Space Grotesk', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
input:focus, textarea:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.13);
}

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0 18px; font-size: 13px; line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px;
  accent-color: #d97706; cursor: pointer; margin-bottom: 0;
}
.form-consent label { margin-bottom: 0; font-weight: 400; color: #555; cursor: pointer; font-size: 13px; }
.form-consent a { color: #d97706; }

.success-msg {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(217, 119, 6, 0.1);
  color: #8a4b00;
  border-radius: 6px;
  font-size: 15px;
}
.success-msg.hidden { display: none; }

/* Footer */
.footer {
  text-align: center;
  color: #808080;
  padding: 32px 0;
  font-size: 14px;
}
.footer a { color: #808080; }
.footer a:hover { color: #d97706; }
.footer-links { margin-bottom: 8px; }
.footer-links a { margin: 0 8px; }

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Process steps */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d97706;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
}
.step-body { flex: 1; }

.page-intro { max-width: 800px; margin-bottom: 32px; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  body { font-size: 16px; }
  .hero-text { max-width: 100%; }
  .nav-links { gap: 14px; font-size: 14px; }
  .navbar-inner { gap: 10px; }
  .form-card { padding: 24px; }
  section { padding: 40px 0; }
  .shots img { height: 140px; }
  .catalog-grid { grid-template-columns: 1fr; }
}
