:root {
  --cream-bg: #f8f6f1;
  --cream-bg-gradient: linear-gradient(120deg, #f8f6f1 85%, #ece9e1 100%);
  --emerald: #1eb786;
  --emerald-dark: #15916a;
  --emerald-light: #44d9a2;
  --text-main: #1a222a;
  --text-secondary: #4c5a6a;
  --border: rgba(30, 183, 134, 0.06);
  --shadow-main: 0 4px 24px 0 rgba(30, 183, 134, 0.08), 0 1.5px 8px 0 rgba(0,0,0,0.03);
  --shadow-card: 0 2px 12px 0 rgba(30,183,134,0.06), 0 1px 2px 0 rgba(0,0,0,0.03);
  --radius-big: 24px;
  --radius-med: 14px;
  --radius-sm: 8px;
  --transition: 0.22s cubic-bezier(.5,.2,.2,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --gradient-opacity: 0.10;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--text-main);
  background: var(--cream-bg-gradient);
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
}

.hiddenobjects-body {
  background: var(--cream-bg-gradient);
  min-height: 100vh;
}

.hiddenobjects-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, .hiddenobjects-menu-link:focus {
  color: var(--emerald-dark);
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 0.6em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 1rem; color: var(--emerald-dark); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 1em;
}

ul, ol {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}

section {
  margin-bottom: 54px;
  position: relative;
}

.hiddenobjects-section-title {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  letter-spacing: 0.01em;
  color: var(--emerald-dark);
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #f8f6f1 80%, rgba(30,183,134,0.04));
  display: inline-block;
  padding: 0.2em 1.2em 0.2em 0;
  border-radius: var(--radius-sm);
}

.hiddenobjects-header {
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-main);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 0 0.5em 0;
}

.hiddenobjects-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8em 24px 0.5em 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hiddenobjects-logo-link {
  display: flex;
  align-items: center;
  margin-right: 2.5em;
}

.hiddenobjects-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-med);
  box-shadow: 0 2px 8px 0 rgba(30,183,134,0.07);
  background: #fff;
  object-fit: cover;
  transition: box-shadow var(--transition);
}
.hiddenobjects-logo-link:hover .hiddenobjects-logo {
  box-shadow: 0 4px 16px 0 rgba(30,183,134,0.15);
}

.hiddenobjects-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.hiddenobjects-menu-list {
  display: flex;
  gap: 1.2em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hiddenobjects-menu-item {
  margin: 0;
}
.hiddenobjects-menu-link {
  color: var(--emerald);
  font-weight: 500;
  font-size: 1em;
  padding: 0.4em 1.1em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.hiddenobjects-menu-link:hover, .hiddenobjects-menu-link:focus {
  background: rgba(30,183,134,0.08);
  color: var(--emerald-dark);
}

@media (max-width: 900px) {
  .hiddenobjects-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
    padding: 0.8em 12px 0.5em 12px;
  }
  .hiddenobjects-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hiddenobjects-menu-list {
    gap: 0.6em;
  }
}

/* HERO */
.hiddenobjects-hero {
  padding: 44px 0 36px 0;
  background: linear-gradient(120deg, #f8f6f1 85%, #ece9e1 100%);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-main);
  margin: 36px auto 54px auto;
  max-width: var(--max-width);
  position: relative;
  overflow: hidden;
}
.hiddenobjects-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: flex-start;
}
.hiddenobjects-hero-col--left {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  min-width: 0;
}
.hiddenobjects-title {
  font-size: 2.3rem;
  letter-spacing: 0.01em;
  color: var(--emerald-dark);
  margin-bottom: 0.3em;
}
.hiddenobjects-tagline {
  font-size: 1.1em;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.7em;
}
.hiddenobjects-quick-meta {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-bottom: 0.4em;
}
.hiddenobjects-meta-item {
  background: rgba(30,183,134,0.06);
  padding: 0.5em 1.2em;
  border-radius: var(--radius-sm);
  font-size: 0.98em;
  color: var(--text-secondary);
  box-shadow: 0 1px 4px 0 rgba(30,183,134,0.04);
}
.hiddenobjects-intro {
  color: var(--text-secondary);
  font-size: 1em;
  margin-bottom: 0.4em;
}
.hiddenobjects-hero-actions {
  display: flex;
  gap: 1em;
  margin-bottom: 0.7em;
}
.hiddenobjects-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 1em;
  padding: 0.75em 2em;
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  background: var(--emerald);
  color: #fff;
  border: none;
  outline: none;
  text-align: center;
  letter-spacing: 0.01em;
}
.hiddenobjects-cta--primary {
  background: linear-gradient(90deg, var(--emerald) 90%, var(--emerald-light));
}
.hiddenobjects-cta--primary:hover, .hiddenobjects-cta--primary:focus {
  background: var(--emerald-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(30,183,134,0.15);
}
.hiddenobjects-cta--secondary {
  background: rgba(30,183,134,0.08);
  color: var(--emerald-dark);
  border: 1px solid var(--border);
}
.hiddenobjects-cta--secondary:hover, .hiddenobjects-cta--secondary:focus {
  background: rgba(30,183,134,0.16);
  color: var(--emerald);
}
.hiddenobjects-cta--big {
  font-size: 1.15em;
  padding: 1.1em 3.5em;
  border-radius: var(--radius-big);
  margin-top: 1.3em;
  box-shadow: 0 6px 32px 0 rgba(30,183,134,0.13);
}
.hiddenobjects-cta--big:hover, .hiddenobjects-cta--big:focus {
  background: var(--emerald-dark);
  transform: translateY(-3px) scale(1.05);
}

.hiddenobjects-keys {
  display: flex;
  gap: 1.2em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hiddenobjects-keys li {
  background: rgba(30,183,134,0.09);
  color: var(--emerald-dark);
  font-weight: 500;
  font-size: 0.97em;
  padding: 0.5em 1.1em;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 4px 0 rgba(30,183,134,0.04);
}

.hiddenobjects-hero-col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2em;
  min-width: 0;
}
.hiddenobjects-hero-card {
  background: #fff;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-main);
  overflow: hidden;
  max-width: 370px;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6em;
  position: relative;
}
.hiddenobjects-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-big);
  transition: transform var(--transition);
}
.hiddenobjects-hero-card:hover .hiddenobjects-hero-image {
  transform: scale(1.025);
}
.hiddenobjects-hero-thumbs {
  display: flex;
  gap: 0.6em;
  justify-content: flex-end;
}
.hiddenobjects-thumb {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: var(--radius-med);
  box-shadow: 0 1px 6px 0 rgba(30,183,134,0.07);
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hiddenobjects-thumb:hover {
  box-shadow: 0 3px 12px 0 rgba(30,183,134,0.13);
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .hiddenobjects-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hiddenobjects-hero-col--right, .hiddenobjects-hero-col--left {
    align-items: stretch;
  }
  .hiddenobjects-hero-card {
    max-width: 100%;
  }
  .hiddenobjects-hero-thumbs {
    justify-content: flex-start;
  }
}

/* WORLD SECTION */
.hiddenobjects-world {
  padding: 36px 0;
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
}
.hiddenobjects-world-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}
.hiddenobjects-world-text {
  background: #fff;
  border-radius: var(--radius-big) var(--radius-med) var(--radius-med) var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 2.2em 2em 1.6em 2em;
  min-width: 0;
}
.hiddenobjects-world-media {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  align-items: flex-end;
  min-width: 0;
}
.hiddenobjects-world-image {
  width: 100%;
  max-width: 320px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  margin-bottom: 0.7em;
}
.hiddenobjects-environments {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.hiddenobjects-env {
  background: rgba(30,183,134,0.07);
  border-radius: var(--radius-med);
  padding: 0.8em 1.2em;
  box-shadow: 0 1px 4px 0 rgba(30,183,134,0.03);
  font-size: 0.97em;
  color: var(--text-main);
}

@media (max-width: 900px) {
  .hiddenobjects-world-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hiddenobjects-world-media {
    align-items: stretch;
  }
  .hiddenobjects-world-image {
    max-width: 100%;
    max-height: 180px;
  }
}

/* HOWTO SECTION */
.hiddenobjects-howto {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-howto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}
.hiddenobjects-howto-actions {
  background: #fff;
  border-radius: var(--radius-big) var(--radius-med) var(--radius-med) var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 2.2em 2em 1.6em 2em;
  min-width: 0;
}
.hiddenobjects-howto-media {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  align-items: flex-end;
  min-width: 0;
}
.hiddenobjects-howto-image {
  width: 100%;
  max-width: 320px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  margin-bottom: 0.7em;
}
.hiddenobjects-system {
  background: rgba(30,183,134,0.07);
  border-radius: var(--radius-med);
  padding: 0.8em 1.2em;
  box-shadow: 0 1px 4px 0 rgba(30,183,134,0.03);
  font-size: 0.97em;
  color: var(--text-main);
}

@media (max-width: 900px) {
  .hiddenobjects-howto-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hiddenobjects-howto-media {
    align-items: stretch;
  }
  .hiddenobjects-howto-image {
    max-width: 100%;
    max-height: 180px;
  }
}

/* MODES SECTION */
.hiddenobjects-modes {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-modes-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}
.hiddenobjects-modes-list {
  background: #fff;
  border-radius: var(--radius-big) var(--radius-med) var(--radius-med) var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 2.2em 2em 1.6em 2em;
  min-width: 0;
}
.hiddenobjects-modes-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}
.hiddenobjects-modes-image {
  width: 100%;
  max-width: 320px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .hiddenobjects-modes-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hiddenobjects-modes-media {
    align-items: stretch;
  }
  .hiddenobjects-modes-image {
    max-width: 100%;
    max-height: 180px;
  }
}

/* CONTENT SECTION */
.hiddenobjects-content {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}
.hiddenobjects-content-list {
  background: #fff;
  border-radius: var(--radius-big) var(--radius-med) var(--radius-med) var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 2.2em 2em 1.6em 2em;
  min-width: 0;
}
.hiddenobjects-content-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}
.hiddenobjects-content-image {
  width: 100%;
  max-width: 320px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .hiddenobjects-content-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hiddenobjects-content-media {
    align-items: stretch;
  }
  .hiddenobjects-content-image {
    max-width: 100%;
    max-height: 180px;
  }
}

/* EXPERIENCE SECTION */
.hiddenobjects-experience {
  background: #fff;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: flex-start;
}
.hiddenobjects-experience-step, .hiddenobjects-experience-emotions {
  background: rgba(30,183,134,0.06);
  border-radius: var(--radius-med);
  box-shadow: 0 1px 4px 0 rgba(30,183,134,0.03);
  padding: 1.6em 1.4em;
  min-width: 0;
}

@media (max-width: 900px) {
  .hiddenobjects-experience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* REVIEWS SECTION */
.hiddenobjects-reviews {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hiddenobjects-review {
  background: #fff;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 1.5em 1.2em;
  font-size: 0.97em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  min-width: 0;
}
.hiddenobjects-review-name {
  margin-bottom: 0.2em;
  color: var(--emerald-dark);
  font-weight: 700;
  font-size: 1.1em;
}
.hiddenobjects-review-text {
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 1100px) {
  .hiddenobjects-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hiddenobjects-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* SCREENSHOTS */
.hiddenobjects-screenshots {
  background: #fff;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hiddenobjects-screen {
  background: linear-gradient(120deg, #f8f6f1 85%, #ece9e1 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hiddenobjects-screen:hover {
  box-shadow: 0 8px 32px 0 rgba(30,183,134,0.12);
  transform: translateY(-2px) scale(1.025);
}
.hiddenobjects-screen-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-med) var(--radius-med) 0 0;
}
.hiddenobjects-caption {
  font-size: 0.96em;
  color: var(--emerald-dark);
  background: rgba(30,183,134,0.06);
  padding: 0.7em 1em;
  border-radius: 0 0 var(--radius-med) var(--radius-med);
  text-align: center;
}

@media (max-width: 1100px) {
  .hiddenobjects-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hiddenobjects-gallery {
    grid-template-columns: 1fr;
  }
  .hiddenobjects-screen-image {
    height: 140px;
  }
}

/* FAQ SECTION */
.hiddenobjects-faq {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 36px 0;
}
.hiddenobjects-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hiddenobjects-faq-item {
  background: #fff;
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-card);
  padding: 1.6em 1.4em;
  min-width: 0;
}

@media (max-width: 900px) {
  .hiddenobjects-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA SECTION */
.hiddenobjects-cta-section {
  background: linear-gradient(120deg, #f8f6f1 90%, #eae6db 100%);
  border-radius: var(--radius-big);
  box-shadow: var(--shadow-main);
  padding: 44px 0 36px 0;
  text-align: center;
}
.hiddenobjects-summary {
  font-size: 1.09em;
  color: var(--text-secondary);
  margin-bottom: 1.2em;
  margin-top: 0.5em;
}

/* FOOTER */
.hiddenobjects-footer {
  background: #fff;
  border-radius: var(--radius-big) var(--radius-big) 0 0;
  box-shadow: 0 -2px 18px 0 rgba(30,183,134,0.05);
  padding: 36px 0 18px 0;
  margin-top: 54px;
}
.hiddenobjects-footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hiddenobjects-footer-col {
  min-width: 0;
}
.hiddenobjects-footer-logo {
  display: inline-block;
  margin-bottom: 1em;
}
.hiddenobjects-footer-logo-img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-med);
  box-shadow: 0 2px 8px 0 rgba(30,183,134,0.07);
  background: #fff;
  object-fit: cover;
}
.hiddenobjects-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hiddenobjects-footer-links li {
  margin-bottom: 0.5em;
}
.hiddenobjects-footer-links a {
  color: var(--emerald);
  font-weight: 500;
  transition: color var(--transition);
}
.hiddenobjects-footer-links a:hover {
  color: var(--emerald-dark);
  text-decoration: underline;
}
.hiddenobjects-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.97em;
}
.hiddenobjects-stats li {
  margin-bottom: 0.4em;
}

@media (max-width: 1100px) {
  .hiddenobjects-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .hiddenobjects-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* LISTS WITH CUSTOM BULLETS */
.hiddenobjects-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.hiddenobjects-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  color: var(--text-secondary);
}
.hiddenobjects-list li::before {
  content: '';
  position: absolute;
  left: 0.2em;
  top: 0.6em;
  width: 0.7em;
  height: 0.7em;
  background: var(--emerald);
  border-radius: 50%;
  opacity: 0.18;
  transition: opacity var(--transition);
}
.hiddenobjects-list li:hover::before {
  opacity: 0.35;
}
ol.hiddenobjects-list {
  list-style: decimal inside;
  padding-left: 0.6em;
  margin-left: 0;
}
ol.hiddenobjects-list li {
  padding-left: 0.2em;
}
ol.hiddenobjects-list li::before {
  display: none;
}

/* SUBTITLES */
.hiddenobjects-subtitle {
  color: var(--emerald-dark);
  font-size: 1.07em;
  margin-top: 1.1em;
  margin-bottom: 0.5em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
  background: #f8f6f1;
}
::-webkit-scrollbar-thumb {
  background: rgba(30,183,134,0.09);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(30,183,134,0.17);
}

/* SELECTION */
::selection {
  background: rgba(30,183,134,0.15);
}

/* SMALL DEVICES */
@media (max-width: 600px) {
  .hiddenobjects-section-title {
    font-size: 1.1rem;
    padding: 0.15em 0.7em 0.15em 0;
  }
  h1 { font-size: 1.3rem; }
  .hiddenobjects-title { font-size: 1.3rem; }
  .hiddenobjects-hero,
  .hiddenobjects-world,
  .hiddenobjects-howto,
  .hiddenobjects-modes,
  .hiddenobjects-content,
  .hiddenobjects-experience,
  .hiddenobjects-reviews,
  .hiddenobjects-screenshots,
  .hiddenobjects-faq,
  .hiddenobjects-cta-section,
  .hiddenobjects-footer {
    padding: 22px 0 18px 0;
    border-radius: var(--radius-sm);
  }
  .hiddenobjects-container {
    padding: 0 7px;
  }
}

/* MISC */
img {
  max-width: 100%;
  height: auto;
  display: block;
}