:root {
  --soeasy-bg: #F3E8FF;
  --soeasy-accent: #854D0E;
  --soeasy-accent-light: #a87730;
  --soeasy-card-bg: rgba(243, 232, 255, 0.90);
  --soeasy-card-grad: linear-gradient(120deg, rgba(243,232,255,0.98) 70%, rgba(200,170,255,0.07) 100%);
  --soeasy-shadow: 0 4px 24px 0 rgba(133,77,14,0.09), 0 1.5px 8px 0 rgba(80,40,10,0.06);
  --soeasy-radius: 18px;
  --soeasy-radius-lg: 28px;
  --soeasy-radius-sm: 10px;
  --soeasy-text: #2A2220;
  --soeasy-muted: #7E6B5A;
  --soeasy-link: #854D0E;
  --soeasy-link-hover: #a87730;
  --soeasy-btn-bg: #854D0E;
  --soeasy-btn-bg-hover: #F3E8FF;
  --soeasy-btn-text: #fff;
  --soeasy-btn-text-hover: #854D0E;
  --soeasy-border: 1px solid rgba(133,77,14,0.13);
  --soeasy-grad-env: linear-gradient(120deg, rgba(133,77,14,0.03) 0%, rgba(243,232,255,0.95) 100%);
  --soeasy-grad-card: linear-gradient(120deg, rgba(243,232,255,0.98) 70%, rgba(200,170,255,0.05) 100%);
  --soeasy-transition: 0.22s cubic-bezier(.4,0,.2,1);
  --soeasy-maxw: 1240px;
  --soeasy-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --soeasy-h1: 2.3rem;
  --soeasy-h2: 1.5rem;
  --soeasy-h3: 1.13rem;
  --soeasy-h4: 1rem;
  --soeasy-p: 14px;
  --soeasy-gap: 32px;
  --soeasy-gap-sm: 18px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: var(--soeasy-font);
  background: var(--soeasy-bg);
  color: var(--soeasy-text);
  min-height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.soeasymatch-body {
  background: var(--soeasy-grad-env);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.soeasymatch-container {
  max-width: var(--soeasy-maxw);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.soeasymatch-header {
  background: var(--soeasy-bg);
  box-shadow: var(--soeasy-shadow);
  border-bottom: var(--soeasy-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.soeasymatch-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--soeasy-maxw);
  margin: 0 auto;
  padding: 14px 18px;
}

.soeasymatch-logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--soeasy-radius-sm);
  box-shadow: 0 2px 8px 0 rgba(133,77,14,0.12);
  background: #fff;
  object-fit: cover;
}

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

.soeasymatch-nav__link {
  color: var(--soeasy-link);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--soeasy-radius-sm);
  transition: background var(--soeasy-transition), color var(--soeasy-transition);
  position: relative;
}
.soeasymatch-nav__link:hover,
.soeasymatch-nav__link:focus {
  background: rgba(133,77,14,0.09);
  color: var(--soeasy-link-hover);
  outline: none;
}

/* HERO */
.soeasymatch-hero {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius-lg);
  box-shadow: var(--soeasy-shadow);
  margin: 36px auto 0 auto;
  padding: 32px 0 32px 0;
  max-width: var(--soeasy-maxw);
  position: relative;
  overflow: hidden;
}
.soeasymatch-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 0 32px;
}
.soeasymatch-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.soeasymatch-hero__col--left {
  gap: 22px;
}
.soeasymatch-hero__title {
  font-size: var(--soeasy-h1);
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--soeasy-accent);
  letter-spacing: -1px;
}
.soeasymatch-hero__tagline {
  font-size: 1.08rem;
  color: var(--soeasy-muted);
  margin: 0 0 18px 0;
  font-weight: 400;
  max-width: 480px;
}
.soeasymatch-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 22px 0;
  padding: 0;
  list-style: none;
}
.soeasymatch-hero__meta-item strong {
  color: var(--soeasy-accent);
  font-weight: 600;
}
.soeasymatch-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.soeasymatch-btn {
  background: var(--soeasy-btn-bg);
  color: var(--soeasy-btn-text);
  border: none;
  border-radius: var(--soeasy-radius-sm);
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(133,77,14,0.10);
  cursor: pointer;
  transition: 
    background var(--soeasy-transition),
    color var(--soeasy-transition),
    box-shadow var(--soeasy-transition);
  outline: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}
.soeasymatch-btn:hover,
.soeasymatch-btn:focus {
  background: var(--soeasy-btn-bg-hover);
  color: var(--soeasy-btn-text-hover);
  box-shadow: 0 4px 24px 0 rgba(133,77,14,0.13);
}
.soeasymatch-btn--ghost {
  background: transparent;
  color: var(--soeasy-accent);
  border: 1px solid var(--soeasy-accent);
  box-shadow: none;
}
.soeasymatch-btn--ghost:hover,
.soeasymatch-btn--ghost:focus {
  background: var(--soeasy-btn-bg);
  color: #fff;
  border-color: var(--soeasy-btn-bg);
}
.soeasymatch-hero__visual {
  background: var(--soeasy-card-bg);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 300px;
  justify-content: center;
}
.soeasymatch-hero__image {
  width: 100%;
  max-width: 340px;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--soeasy-radius);
  box-shadow: 0 2px 14px 0 rgba(133,77,14,0.10);
  background: #fff;
}
.soeasymatch-hero__info {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--soeasy-muted);
  text-align: center;
}
.soeasymatch-hero__quick {
  margin-top: 24px;
  background: var(--soeasy-card-bg);
  border-radius: var(--soeasy-radius-sm);
  box-shadow: 0 1.5px 8px 0 rgba(133,77,14,0.07);
  padding: 14px 18px;
}
.soeasymatch-hero__quick-title {
  font-size: 1rem;
  color: var(--soeasy-accent);
  margin: 0 0 8px 0;
  font-weight: 600;
}
.soeasymatch-hero__quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.soeasymatch-hero__quick-link {
  color: var(--soeasy-accent);
  text-decoration: none;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--soeasy-radius-sm);
  transition: background var(--soeasy-transition), color var(--soeasy-transition);
}
.soeasymatch-hero__quick-link:hover,
.soeasymatch-hero__quick-link:focus {
  background: rgba(133,77,14,0.09);
  color: var(--soeasy-link-hover);
  outline: none;
}

/* WORLD SECTION */
.soeasymatch-world {
  margin: 54px 0 0 0;
  padding: 0 0 48px 0;
}
.soeasymatch-world__header {
  margin-bottom: 28px;
  text-align: center;
}
.soeasymatch-world__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 10px 0;
  font-weight: 700;
}
.soeasymatch-world__lead {
  color: var(--soeasy-muted);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 540px;
}
.soeasymatch-world__content {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 32px;
  align-items: stretch;
}
.soeasymatch-world__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.soeasymatch-world__image {
  width: 100%;
  max-width: 320px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  background: #fff;
}
.soeasymatch-world__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.soeasymatch-world__block {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
}
.soeasymatch-world__block-title {
  font-size: var(--soeasy-h3);
  color: var(--soeasy-accent);
  margin: 0 0 6px 0;
  font-weight: 600;
}
.soeasymatch-world__block-text {
  color: var(--soeasy-text);
  font-size: 0.98rem;
  margin: 0;
}
.soeasymatch-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.soeasymatch-world__list li {
  position: relative;
  padding-left: 18px;
  color: var(--soeasy-muted);
  font-size: 0.98rem;
}
.soeasymatch-world__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soeasy-accent);
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.18;
}

/* FEATURES SECTION */
.soeasymatch-features {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-features__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-features__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr 1fr;
  gap: 22px;
}
.soeasymatch-features__card {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius-lg);
  box-shadow: var(--soeasy-shadow);
  padding: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.soeasymatch-features__img {
  width: 100%;
  max-width: 170px;
  max-height: 120px;
  object-fit: cover;
  border-radius: var(--soeasy-radius);
  margin: 18px 0 10px 0;
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(133,77,14,0.07);
}
.soeasymatch-features__caption {
  text-align: center;
  color: var(--soeasy-muted);
  font-size: 0.97rem;
  padding: 0 10px;
}
.soeasymatch-features__item {
  background: var(--soeasy-card-bg);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 18px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.soeasymatch-features__item h3 {
  font-size: var(--soeasy-h4);
  color: var(--soeasy-accent);
  margin: 0 0 4px 0;
  font-weight: 600;
}
.soeasymatch-features__item p {
  color: var(--soeasy-text);
  font-size: 0.97rem;
  margin: 0;
}

/* PLAY SECTION */
.soeasymatch-play {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-play__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-play__columns {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  gap: 32px;
}
.soeasymatch-play__col {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius-lg);
  box-shadow: var(--soeasy-shadow);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.soeasymatch-play__col h3 {
  font-size: var(--soeasy-h4);
  color: var(--soeasy-accent);
  margin: 0 0 10px 0;
  font-weight: 600;
}
.soeasymatch-play__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasymatch-play__list li {
  position: relative;
  padding-left: 18px;
  color: var(--soeasy-muted);
  font-size: 0.98rem;
}
.soeasymatch-play__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soeasy-accent);
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.18;
}
.soeasymatch-play__sys h4 {
  font-size: 0.99rem;
  color: var(--soeasy-accent);
  margin: 0 0 3px 0;
  font-weight: 600;
}
.soeasymatch-play__sys p {
  color: var(--soeasy-text);
  font-size: 0.97rem;
  margin: 0 0 10px 0;
}

/* RHYTHM SECTION */
.soeasymatch-rhythm {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-rhythm__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-rhythm__two {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 32px;
}
.soeasymatch-rhythm__step,
.soeasymatch-rhythm__why {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius-lg);
  box-shadow: var(--soeasy-shadow);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.soeasymatch-rhythm__step h3,
.soeasymatch-rhythm__why h3 {
  font-size: var(--soeasy-h4);
  color: var(--soeasy-accent);
  margin: 0 0 8px 0;
  font-weight: 600;
}
.soeasymatch-rhythm__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: soeasymatch-step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.soeasymatch-rhythm__list li {
  position: relative;
  padding-left: 26px;
  color: var(--soeasy-muted);
  font-size: 0.98rem;
}
.soeasymatch-rhythm__list li::before {
  counter-increment: soeasymatch-step;
  content: counter(soeasymatch-step) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--soeasy-accent);
  font-weight: 600;
  opacity: 0.23;
  font-size: 0.97rem;
}
.soeasymatch-rhythm__list-why {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasymatch-rhythm__list-why li {
  position: relative;
  padding-left: 18px;
  color: var(--soeasy-muted);
  font-size: 0.98rem;
}
.soeasymatch-rhythm__list-why li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soeasy-accent);
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.18;
}

/* CONTENT SECTION */
.soeasymatch-content {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-content__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-content__list {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius-lg);
  box-shadow: var(--soeasy-shadow);
  padding: 24px 24px 18px 24px;
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
}
.soeasymatch-content__list li {
  position: relative;
  padding-left: 18px;
  color: var(--soeasy-muted);
  font-size: 0.98rem;
}
.soeasymatch-content__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soeasy-accent);
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.18;
}
.soeasymatch-content__example,
.soeasymatch-content__stats {
  background: var(--soeasy-card-bg);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 14px 18px;
  margin: 0 0 10px 0;
  font-size: 0.97rem;
  color: var(--soeasy-text);
}

/* SCREENSHOTS SECTION */
.soeasymatch-screenshots {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-screenshots__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 10px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-screenshots__lead {
  color: var(--soeasy-muted);
  font-size: 1rem;
  margin: 0 0 24px 0;
  text-align: center;
}
.soeasymatch-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.soeasymatch-screenshots__item {
  background: var(--soeasy-card-bg);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px 14px 8px;
}
.soeasymatch-screenshots__img {
  width: 100%;
  max-width: 220px;
  max-height: 120px;
  object-fit: cover;
  border-radius: var(--soeasy-radius-sm);
  background: #fff;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(133,77,14,0.07);
}
.soeasymatch-screenshots__caption {
  font-size: 0.95rem;
  color: var(--soeasy-muted);
  text-align: center;
  margin: 0;
}

/* IMPRESSIONS SECTION */
.soeasymatch-impressions {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-impressions__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-impressions__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 22px;
}
.soeasymatch-impressions__col {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.soeasymatch-impressions__col h3 {
  font-size: var(--soeasy-h4);
  color: var(--soeasy-accent);
  margin: 0 0 8px 0;
  font-weight: 600;
}
.soeasymatch-impressions__col p {
  color: var(--soeasy-text);
  font-size: 0.97rem;
  margin: 0;
}
.soeasymatch-impressions__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasymatch-impressions__list li {
  position: relative;
  padding-left: 18px;
  color: var(--soeasy-muted);
  font-size: 0.97rem;
}
.soeasymatch-impressions__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--soeasy-accent);
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.18;
}

/* FAQ SECTION */
.soeasymatch-faq {
  margin: 0 0 0 0;
  padding: 0 0 54px 0;
}
.soeasymatch-faq__title {
  font-size: var(--soeasy-h2);
  color: var(--soeasy-accent);
  margin: 0 0 24px 0;
  font-weight: 700;
  text-align: center;
}
.soeasymatch-faq__item {
  background: var(--soeasy-grad-card);
  border-radius: var(--soeasy-radius);
  box-shadow: var(--soeasy-shadow);
  padding: 18px 16px 14px 16px;
  margin-bottom: 14px;
}
.soeasymatch-faq__item h3 {
  font-size: var(--soeasy-h4);
  color: var(--soeasy-accent);
  margin: 0 0 7px 0;
  font-weight: 600;
}
.soeasymatch-faq__item p {
  color: var(--soeasy-text);
  font-size: 0.97rem;
  margin: 0;
}

/* COOKIE BANNER */
.soeasymatch-cookie {
  display: none;
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soeasy-card-bg);
  box-shadow: 0 8px 32px 0 rgba(133,77,14,0.14);
  border-radius: var(--soeasy-radius-lg);
  padding: 20px 32px;
  z-index: 9999;
  align-items: center;
  gap: 18px;
  min-width: 0;
  max-width: 96vw;
  flex-wrap: wrap;
  flex-direction: row;
  transition: opacity var(--soeasy-transition), transform var(--soeasy-transition);
}
.soeasymatch-cookie__text {
  color: var(--soeasy-muted);
  font-size: 0.99rem;
  margin: 0 14px 0 0;
}
.soeasymatch-cookie__button {
  background: var(--soeasy-btn-bg);
  color: var(--soeasy-btn-text);
  border: none;
  border-radius: var(--soeasy-radius-sm);
  padding: 8px 24px;
  font-size: 0.99rem;
  font-weight: 600;
  cursor: pointer;
  transition: 
    background var(--soeasy-transition),
    color var(--soeasy-transition),
    box-shadow var(--soeasy-transition);
  outline: none;
  margin-left: 10px;
}
.soeasymatch-cookie__button:hover,
.soeasymatch-cookie__button:focus {
  background: var(--soeasy-btn-bg-hover);
  color: var(--soeasy-btn-text-hover);
  box-shadow: 0 4px 24px 0 rgba(133,77,14,0.13);
}

/* FOOTER */
.soeasymatch-footer {
  background: var(--soeasy-bg);
  border-top: var(--soeasy-border);
  padding: 32px 0 0 0;
  margin-top: 32px;
  box-shadow: 0 -2px 12px 0 rgba(133,77,14,0.07);
}
.soeasymatch-footer__inner {
  max-width: var(--soeasy-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  gap: 32px;
  padding: 0 18px 18px 18px;
}
.soeasymatch-footer__about {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.soeasymatch-footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--soeasy-radius-sm);
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(133,77,14,0.12);
  margin-bottom: 7px;
}
.soeasymatch-footer__text {
  color: var(--soeasy-muted);
  font-size: 0.97rem;
  margin: 0;
}
.soeasymatch-footer__links-title {
  font-size: 1rem;
  color: var(--soeasy-accent);
  margin: 0 0 7px 0;
  font-weight: 600;
}
.soeasymatch-footer__links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasymatch-footer__links-list li a {
  color: var(--soeasy-link);
  text-decoration: none;
  font-size: 0.97rem;
  padding: 2px 0;
  transition: color var(--soeasy-transition);
}
.soeasymatch-footer__links-list li a:hover,
.soeasymatch-footer__links-list li a:focus {
  color: var(--soeasy-link-hover);
  text-decoration: underline;
}
.soeasymatch-footer__bottom {
  border-top: var(--soeasy-border);
  padding: 10px 18px 16px 18px;
  margin-top: 18px;
  text-align: center;
}
.soeasymatch-footer__copy {
  color: var(--soeasy-muted);
  font-size: 0.97rem;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .soeasymatch-hero__grid,
  .soeasymatch-world__content,
  .soeasymatch-features__grid,
  .soeasymatch-play__columns,
  .soeasymatch-rhythm__two,
  .soeasymatch-impressions__grid,
  .soeasymatch-footer__inner,
  .soeasymatch-screenshots__grid,
  .soeasymatch-world__blocks,
  .soeasymatch-content__list {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }
  .soeasymatch-footer__inner {
    gap: 14px !important;
  }
}
@media (max-width: 800px) {
  .soeasymatch-header__inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .soeasymatch-nav__list {
    gap: 11px;
    flex-wrap: wrap;
  }
  .soeasymatch-hero__grid,
  .soeasymatch-world__content,
  .soeasymatch-features__grid,
  .soeasymatch-play__columns,
  .soeasymatch-rhythm__two,
  .soeasymatch-impressions__grid,
  .soeasymatch-footer__inner,
  .soeasymatch-screenshots__grid,
  .soeasymatch-world__blocks,
  .soeasymatch-content__list {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .soeasymatch-hero {
    padding: 18px 0 18px 0;
  }
  .soeasymatch-hero__grid {
    padding: 0 8px;
  }
  .soeasymatch-world__image {
    max-width: 100%;
    max-height: 200px;
  }
  .soeasymatch-footer__inner {
    padding: 0 8px 8px 8px;
  }
  .soeasymatch-footer {
    padding: 22px 0 0 0;
  }
  .soeasymatch-screenshots__img {
    max-width: 100%;
    max-height: 90px;
  }
  .soeasymatch-cookie {
    padding: 12px 8px;
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  html, body {
    font-size: 13px;
  }
  .soeasymatch-header__inner {
    padding: 8px 4px;
  }
  .soeasymatch-hero {
    margin: 12px 0 0 0;
    padding: 8px 0 8px 0;
  }
  .soeasymatch-hero__grid {
    padding: 0 2px;
    gap: 10px;
  }
  .soeasymatch-world,
  .soeasymatch-features,
  .soeasymatch-play,
  .soeasymatch-rhythm,
  .soeasymatch-content,
  .soeasymatch-screenshots,
  .soeasymatch-impressions,
  .soeasymatch-faq {
    padding: 0 0 18px 0;
  }
  .soeasymatch-footer__inner {
    padding: 0 2px 4px 2px;
    gap: 7px !important;
  }
  .soeasymatch-footer {
    padding: 10px 0 0 0;
  }
  .soeasymatch-footer__bottom {
    padding: 8px 2px 10px 2px;
  }
  .soeasymatch-cookie {
    padding: 6px 4px;
    font-size: 0.95rem;
    bottom: 10px;
  }
}

/* Hide scrollbars for all blocks with overflow */
.soeasymatch-hero,
.soeasymatch-world,
.soeasymatch-features,
.soeasymatch-play,
.soeasymatch-rhythm,
.soeasymatch-content,
.soeasymatch-screenshots,
.soeasymatch-impressions,
.soeasymatch-faq {
  scrollbar-width: thin;
  scrollbar-color: rgba(133,77,14,0.09) var(--soeasy-bg);
}
::-webkit-scrollbar {
  width: 8px;
  background: var(--soeasy-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(133,77,14,0.09);
  border-radius: 8px;
}

/* Selection */
::selection {
  background: #e9d5ff;
  color: var(--soeasy-accent);
}