:root {
  --color-bg: #334155;
  --color-bg-light: #3e4a5e;
  --color-bg-gradient: linear-gradient(135deg, rgba(51,65,85,0.98) 0%, rgba(51,65,85,0.92) 100%);
  --color-card-bg: rgba(52, 61, 80, 0.98);
  --color-card-gradient: linear-gradient(120deg, rgba(51,65,85,0.99) 60%, rgba(16,185,129,0.05) 100%);
  --color-accent: #10B981;
  --color-accent-light: #34d399;
  --color-text: #e5e7eb;
  --color-text-muted: #cbd5e1;
  --color-border: #10B981;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --shadow-s: 0 2px 8px 0 rgba(16,24,40,0.08);
  --shadow-m: 0 4px 24px 0 rgba(16,24,40,0.13);
  --shadow-l: 0 8px 32px 0 rgba(16,24,40,0.17);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-lg: 1.6rem;
  --font-size-xl: 2.2rem;
  --gap: 32px;
}

html, body {
  height: 100%;
  background: var(--color-bg-gradient), var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--font-size);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.dropmarbles-body {
  min-height: 100vh;
  background: var(--color-bg-gradient), var(--color-bg);
  color: var(--color-text);
}

/* Container utility */
[class$="__inner"], .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.dropmarbles-header {
  background: var(--color-bg-gradient);
  box-shadow: var(--shadow-s);
  position: sticky;
  top: 0;
  z-index: 30;
}

.dropmarbles-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 32px;
  padding: 10px 20px;
}

.dropmarbles-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.dropmarbles-logo__img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  background: var(--color-bg-light);
  object-fit: cover;
}

.dropmarbles-logo__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.01em;
}

.dropmarbles-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropmarbles-nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-s);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.dropmarbles-nav__link:hover,
.dropmarbles-nav__link:focus {
  color: var(--color-accent);
  background: rgba(16,185,129,0.08);
}

/* HERO */
.dropmarbles-hero {
  background: var(--color-card-gradient);
  box-shadow: var(--shadow-l);
  border-radius: var(--radius-l);
  margin: 32px auto 0;
  max-width: var(--max-width);
  padding: 36px 0 32px 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.dropmarbles-hero__wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.dropmarbles-hero__left {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.dropmarbles-hero__title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 0 4px 0;
  letter-spacing: 0.01em;
}

.dropmarbles-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 10px 0;
}

.dropmarbles-hero__lead {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 10px;
}

.dropmarbles-hero__actions {
  display: flex;
  gap: 16px;
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  outline: none;
}

.dropmarbles-cta--primary {
  background: var(--color-accent);
  color: #fff;
}

.dropmarbles-cta--primary:hover,
.dropmarbles-cta--primary:focus {
  background: #fff;
  color: var(--color-accent);
  box-shadow: var(--shadow-l);
}

.dropmarbles-cta--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.dropmarbles-cta--secondary:hover,
.dropmarbles-cta--secondary:focus {
  background: var(--color-accent-light);
  color: #fff;
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-m);
}

.dropmarbles-hero__right {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.dropmarbles-hero__image {
  width: 350px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  background: var(--color-bg-light);
}

.dropmarbles-hero__meta {
  display: flex;
  gap: 18px;
  font-size: 0.97em;
  color: var(--color-text-muted);
  background: rgba(51,65,85,0.92);
  border-radius: var(--radius-s);
  padding: 7px 18px;
  box-shadow: var(--shadow-s);
  font-weight: 500;
}

/* FEATURES */
.dropmarbles-features {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-features__title {
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 24px 0;
  text-align: center;
  letter-spacing: 0.01em;
}

.dropmarbles-features__img {
  display: block;
  margin: 0 auto 28px auto;
  max-width: 340px;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  background: var(--color-bg-light);
}

.dropmarbles-features__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 18px;
}

.dropmarbles-feature {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.dropmarbles-feature:hover,
.dropmarbles-feature:focus-within {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px) scale(1.025);
}

.dropmarbles-feature__title {
  color: var(--color-accent);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: 0.01em;
}

.dropmarbles-feature__text {
  color: var(--color-text-muted);
  font-size: 0.98em;
  margin: 0;
}

/* WORLD */
.dropmarbles-world {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-world__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  gap: 38px;
  align-items: flex-start;
}

.dropmarbles-world__image {
  width: 100%;
  max-width: 340px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  background: var(--color-bg-light);
  margin: 0 auto;
  display: block;
}

.dropmarbles-world__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.dropmarbles-world__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 18px 0;
  letter-spacing: 0.01em;
}

.dropmarbles-world__lead {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 8px;
}

.dropmarbles-world__content h3 {
  color: var(--color-accent);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 12px 0 4px 0;
}

.dropmarbles-world__content ul {
  margin: 0 0 10px 0;
  padding-left: 0;
  list-style: none;
}

.dropmarbles-world__content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-world__content ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.65;
}

/* HOW TO PLAY */
.dropmarbles-play {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-play__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

.dropmarbles-play__cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
}

.dropmarbles-play__col {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.dropmarbles-play__col h3 {
  color: var(--color-accent);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-play__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-play__col ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-play__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

.dropmarbles-play__system {
  margin-bottom: 12px;
}

.dropmarbles-play__system h4 {
  color: var(--color-accent);
  font-size: 0.97rem;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.dropmarbles-play__system p {
  color: var(--color-text-muted);
  font-size: 0.96em;
  margin: 0 0 5px 0;
}

.dropmarbles-play__support {
  margin-top: 24px;
  background: var(--color-bg-light);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 18px 18px 14px 18px;
}

.dropmarbles-play__support h3 {
  color: var(--color-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-play__support p {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0;
}

/* RHYTHM */
.dropmarbles-rhythm {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-rhythm__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 38px;
  align-items: flex-start;
}

.dropmarbles-rhythm__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
}

.dropmarbles-rhythm__steps {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 22px 18px 18px 18px;
}

.dropmarbles-rhythm__steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-rhythm__steps ol li {
  margin-bottom: 8px;
}

.dropmarbles-rhythm__reasons {
  background: var(--color-bg-light);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 18px 18px 14px 18px;
}

.dropmarbles-rhythm__reasons h3 {
  color: var(--color-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-rhythm__reasons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-rhythm__reasons ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-rhythm__reasons ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

/* CONTENT */
.dropmarbles-content {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-content__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}

.dropmarbles-content__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
}

.dropmarbles-content__list {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 22px 18px 18px 18px;
  margin-bottom: 18px;
}

.dropmarbles-content__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-content__list ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-content__list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.65;
}

.dropmarbles-content__tech {
  background: var(--color-bg-light);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 14px 16px 12px 16px;
  margin-bottom: 10px;
}

.dropmarbles-content__tech h3 {
  color: var(--color-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-content__tech p {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0;
}

.dropmarbles-content__img {
  width: 100%;
  max-width: 340px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  background: var(--color-bg-light);
  margin: 0 auto;
  display: block;
}

/* SCREENSHOTS */
.dropmarbles-screenshots {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-screenshots__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

.dropmarbles-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.dropmarbles-shot {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 10px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.dropmarbles-shot:hover,
.dropmarbles-shot:focus-within {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px) scale(1.025);
}

.dropmarbles-shot__img {
  width: 100%;
  max-width: 220px;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius-s);
  background: var(--color-bg-light);
  margin-bottom: 8px;
  box-shadow: var(--shadow-s);
}

.dropmarbles-shot__caption {
  color: var(--color-text-muted);
  font-size: 0.97em;
  text-align: center;
  margin: 0;
}

/* IMPRESSIONS */
.dropmarbles-impressions {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-impressions__inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 28px 24px 22px 24px;
}

.dropmarbles-impressions__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 18px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

.dropmarbles-impressions__content h3 {
  color: var(--color-accent);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 12px 0 4px 0;
}

.dropmarbles-impressions__content ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-impressions__content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.97em;
}

.dropmarbles-impressions__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

.dropmarbles-impressions__content p {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0 0 10px 0;
}

/* FAQ */
.dropmarbles-faq {
  margin: 48px auto 0;
  padding: 36px 0;
  background: var(--color-card-gradient);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.dropmarbles-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.dropmarbles-faq__title {
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

.dropmarbles-faq__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dropmarbles-faq__item {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 18px 18px 12px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.dropmarbles-faq__item:hover,
.dropmarbles-faq__item:focus-within {
  box-shadow: var(--shadow-l);
  transform: translateY(-3px) scale(1.015);
}

.dropmarbles-faq__item h4 {
  color: var(--color-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-faq__item p {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0;
}

/* COOKIE BANNER */
.dropmarbles-cookie {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  padding: 18px 28px 16px 28px;
  z-index: 100;
  align-items: center;
  gap: 18px;
  min-width: 280px;
  max-width: 96vw;
  flex-direction: row;
  animation: fadeInCookie 0.6s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInCookie {
  from { opacity: 0; transform: translateX(-50%) translateY(30px);}
  to { opacity: 1; transform: translateX(-50%) translateY(0);}
}

.dropmarbles-cookie__text {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0 16px 0 0;
  flex: 1 1 auto;
}

.dropmarbles-cookie__btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-s);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  box-shadow: var(--shadow-m);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.dropmarbles-cookie__btn:hover,
.dropmarbles-cookie__btn:focus {
  background: #fff;
  color: var(--color-accent);
  box-shadow: var(--shadow-l);
}

/* FOOTER */
.dropmarbles-footer {
  margin: 48px auto 0;
  padding: 36px 0 0 0;
  background: var(--color-bg-gradient);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: var(--shadow-m);
}

.dropmarbles-footer__inner {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.2fr 2fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 14px 20px;
}

.dropmarbles-footer__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropmarbles-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dropmarbles-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-m);
  object-fit: cover;
  background: var(--color-bg-light);
  box-shadow: var(--shadow-s);
}

.dropmarbles-footer__brand span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1em;
}

.dropmarbles-footer__col h4 {
  color: var(--color-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dropmarbles-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropmarbles-footer__col ul li {
  margin-bottom: 6px;
}

.dropmarbles-footer__col ul li a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.97em;
  transition: color var(--transition);
  border-radius: var(--radius-s);
  padding: 2px 6px;
}

.dropmarbles-footer__col ul li a:hover,
.dropmarbles-footer__col ul li a:focus {
  color: var(--color-accent);
  background: rgba(16,185,129,0.08);
}

.dropmarbles-footer__col p {
  color: var(--color-text-muted);
  font-size: 0.97em;
  margin: 0;
}

.dropmarbles-footer__bottom {
  border-top: 1px solid rgba(16,185,129,0.09);
  margin-top: 18px;
  padding: 12px 20px 0 20px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.93em;
}

/* Responsive */
@media (max-width: 1100px) {
  .dropmarbles-header__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .dropmarbles-features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dropmarbles-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dropmarbles-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
  }
  .dropmarbles-world__inner,
  .dropmarbles-content__inner,
  .dropmarbles-rhythm__inner,
  .dropmarbles-play__cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 800px) {
  .dropmarbles-hero__wrap {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .dropmarbles-features__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dropmarbles-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dropmarbles-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .dropmarbles-impressions__inner,
  .dropmarbles-faq__inner {
    padding: 16px 8px;
  }
}

@media (max-width: 600px) {
  .dropmarbles-header__inner {
    flex-direction: column;
    gap: 10px;
    padding: 6px 8px;
  }
  .dropmarbles-logo__img {
    width: 32px;
    height: 32px;
  }
  .dropmarbles-logo__title {
    font-size: 1em;
  }
  .dropmarbles-nav__list {
    gap: 14px;
  }
  .dropmarbles-hero {
    padding: 18px 0 12px 0;
    margin: 18px auto 0;
    border-radius: var(--radius-m);
  }
  .dropmarbles-hero__image {
    width: 100%;
    max-width: 100%;
    max-height: 180px;
  }
  .dropmarbles-features,
  .dropmarbles-world,
  .dropmarbles-play,
  .dropmarbles-rhythm,
  .dropmarbles-content,
  .dropmarbles-impressions,
  .dropmarbles-faq,
  .dropmarbles-screenshots {
    padding: 18px 0;
    margin: 18px auto 0;
    border-radius: var(--radius-m);
  }
  .dropmarbles-footer {
    padding: 18px 0 0 0;
    border-radius: var(--radius-m) var(--radius-m) 0 0;
  }
  .dropmarbles-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 8px 8px 8px;
  }
  .dropmarbles-footer__logo {
    width: 24px;
    height: 24px;
  }
  .dropmarbles-cookie {
    padding: 12px 12px 10px 12px;
    min-width: 160px;
  }
  .dropmarbles-impressions__inner,
  .dropmarbles-faq__inner {
    padding: 8px 2px;
  }
}