:root {
  --jc-bg: #111013;
  --jc-bg-gradient: linear-gradient(135deg, rgba(80,50,100,0.04) 0%, rgba(0,0,0,0.09) 100%);
  --jc-card-bg: rgba(24,22,28,0.96);
  --jc-card-gradient: linear-gradient(120deg, rgba(120,80,180,0.06) 0%, rgba(0,0,0,0.06) 100%);
  --jc-accent: #a259ff;
  --jc-accent-hover: #d1a6ff;
  --jc-accent-dark: #6b2fb7;
  --jc-border: rgba(162, 89, 255, 0.18);
  --jc-border-light: rgba(162, 89, 255, 0.09);
  --jc-text: #eae6f7;
  --jc-text-light: #bdb6d8;
  --jc-muted: #7a6e99;
  --jc-shadow: 0 4px 32px 0 rgba(60,40,120,0.14), 0 1.5px 3px 0 rgba(0,0,0,0.13);
  --jc-radius-lg: 28px;
  --jc-radius-md: 16px;
  --jc-radius-sm: 8px;
  --jc-radius-xs: 4px;
  --jc-padding-section: 56px;
  --jc-padding-section-mobile: 28px;
  --jc-max-width: 1240px;
  --jc-transition: 0.22s cubic-bezier(.4,0,.2,1);
  --jc-font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --jc-font-title: 'Inter', 'Segoe UI', Arial, sans-serif;
  --jc-cta-shadow: 0 2px 16px 0 rgba(162,89,255,0.16);
}

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

body.jewelcraze-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
}

.jewelcraze-main {
  flex: 1 0 auto;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* HEADER */
.jewelcraze-header {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  box-shadow: var(--jc-shadow);
  border-bottom: 1px solid var(--jc-border-light);
  position: sticky;
  top: 0;
  z-index: 50;
}
.jewelcraze-header-inner {
  max-width: var(--jc-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 32px;
  min-height: 70px;
}
.jewelcraze-logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.jewelcraze-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--jc-radius-md);
  box-shadow: 0 2px 10px 0 rgba(162,89,255,0.14);
  background: #1b1627;
  object-fit: cover;
}

.jewelcraze-nav {
  flex: 1;
}
.jewelcraze-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jewelcraze-nav-link {
  color: var(--jc-text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--jc-radius-xs);
  transition: color var(--jc-transition), background var(--jc-transition);
  position: relative;
}
.jewelcraze-nav-link:hover,
.jewelcraze-nav-link:focus {
  color: var(--jc-accent);
  background: rgba(162,89,255,0.09);
}

/* HERO */
.jewelcraze-hero {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  padding: var(--jc-padding-section) 0 0 0;
}
.jewelcraze-hero-grid {
  max-width: var(--jc-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 0 32px 48px 32px;
}
.jewelcraze-hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.jewelcraze-hero-video {
  width: 100%;
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  background: #1b1627;
  object-fit: cover;
  max-height: 300px;
  margin-bottom: 10px;
  display: block;
}
.jewelcraze-hero-image {
  width: 100%;
  border-radius: var(--jc-radius-lg);
  object-fit: cover;
  max-height: 300px;
  box-shadow: 0 1.5px 12px 0 rgba(162,89,255,0.12);
  background: #16111f;
  display: block;
}
.jewelcraze-hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  padding: 36px 32px 32px 32px;
  min-width: 0;
}
.jewelcraze-title {
  font-family: var(--jc-font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jc-accent);
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.jewelcraze-tagline {
  font-size: 1.1rem;
  color: var(--jc-text-light);
  margin-bottom: 10px;
}
.jewelcraze-quick-info {
  margin-bottom: 4px;
}
.jewelcraze-list {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
}
.jewelcraze-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: var(--jc-text-light);
  font-size: 14px;
}
.jewelcraze-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jc-accent);
  opacity: 0.16;
}
.jewelcraze-cta {
  display: flex;
  gap: 18px;
  margin: 14px 0 0 0;
}
.jewelcraze-cta-button {
  background: var(--jc-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--jc-radius-md);
  padding: 13px 34px;
  box-shadow: var(--jc-cta-shadow);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--jc-transition), color var(--jc-transition), box-shadow var(--jc-transition);
  outline: none;
  letter-spacing: 0.02em;
}
.jewelcraze-cta-button:hover,
.jewelcraze-cta-button:focus {
  background: #fff;
  color: var(--jc-accent-dark);
  box-shadow: 0 3px 18px 0 rgba(162,89,255,0.24);
}
.jewelcraze-cta-link {
  color: var(--jc-accent);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--jc-radius-xs);
  padding: 13px 18px;
  background: rgba(162,89,255,0.07);
  transition: background var(--jc-transition), color var(--jc-transition);
}
.jewelcraze-cta-link:hover,
.jewelcraze-cta-link:focus {
  background: rgba(162,89,255,0.19);
  color: #fff;
}
.jewelcraze-anchors {
  display: flex;
  gap: 18px;
  margin-top: 5px;
}
.jewelcraze-small-link {
  color: var(--jc-muted);
  font-size: 0.96em;
  text-decoration: underline;
  transition: color var(--jc-transition);
}
.jewelcraze-small-link:hover,
.jewelcraze-small-link:focus {
  color: var(--jc-accent);
}

/* WORLD SECTION */
.jewelcraze-world {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  padding: var(--jc-padding-section) 0;
  border-radius: var(--jc-radius-lg) var(--jc-radius-lg) 0 0;
  box-shadow: var(--jc-shadow);
  margin-top: 0;
}
.jewelcraze-container {
  max-width: var(--jc-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.jewelcraze-heading {
  font-family: var(--jc-font-title);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--jc-accent);
  margin: 0 0 36px 0;
  letter-spacing: -0.2px;
}
.jewelcraze-world-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: stretch;
}
.jewelcraze-world-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.jewelcraze-world-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--jc-radius-md);
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.11);
  background: #1b1627;
}
.jewelcraze-world-content {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 28px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jewelcraze-world-list {
  margin-top: 12px;
}
.jewelcraze-world-list li {
  color: var(--jc-text-light);
  font-size: 14px;
}

/* FEATURES SECTION */
.jewelcraze-features {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  padding: var(--jc-padding-section) 0;
}
.jewelcraze-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.jewelcraze-feature-card {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 180px;
  position: relative;
  transition: box-shadow var(--jc-transition), transform var(--jc-transition);
}
.jewelcraze-feature-card:hover {
  box-shadow: 0 8px 32px 0 rgba(162,89,255,0.22), 0 1.5px 3px 0 rgba(0,0,0,0.15);
  transform: translateY(-4px) scale(1.02);
}
.jewelcraze-feature-image {
  width: 44px;
  height: 44px;
  border-radius: var(--jc-radius-md);
  object-fit: cover;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.13);
  background: #1b1627;
}
.jewelcraze-feature-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--jc-accent);
  margin: 0 0 6px 0;
  letter-spacing: -0.1px;
}
.jewelcraze-feature-text {
  color: var(--jc-text-light);
  font-size: 14px;
  margin: 0;
}

/* GAMEPLAY SECTION */
.jewelcraze-gameplay {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  padding: var(--jc-padding-section) 0;
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  margin-top: 0;
}
.jewelcraze-gameplay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.jewelcraze-gameplay-actions,
.jewelcraze-game-systems {
  background: var(--jc-card-bg);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jewelcraze-subheading {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--jc-accent);
  margin: 0 0 10px 0;
  letter-spacing: -0.1px;
}

/* RHYTHM SECTION */
.jewelcraze-rhythm {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  padding: var(--jc-padding-section) 0;
}
.jewelcraze-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 32px 28px 20px 28px;
}
.jewelcraze-steps ol,
.jewelcraze-steps ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}
.jewelcraze-steps ol li {
  counter-increment: jcstep;
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: var(--jc-text-light);
}
.jewelcraze-steps ol li::before {
  content: counter(jcstep) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--jc-accent);
  font-weight: 600;
  font-size: 14px;
  opacity: 0.7;
}
.jewelcraze-steps ul li {
  color: var(--jc-text-light);
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.jewelcraze-steps ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jc-accent);
  opacity: 0.14;
}

/* SCREENSHOTS SECTION */
.jewelcraze-screenshots {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  padding: var(--jc-padding-section) 0;
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  margin-top: 0;
}
.jewelcraze-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.jewelcraze-ss {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.jewelcraze-ss-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #1b1627;
  display: block;
}
.jewelcraze-ss-caption {
  color: var(--jc-text-light);
  font-size: 13px;
  padding: 10px 12px 10px 12px;
  background: none;
  text-align: left;
  min-height: 44px;
}

/* CONTENTS SECTION */
.jewelcraze-contents {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  padding: var(--jc-padding-section) 0;
}
.jewelcraze-contents .jewelcraze-list {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 32px 28px 22px 28px;
  margin: 0;
}

/* FAQ SECTION */
.jewelcraze-faq {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  padding: var(--jc-padding-section) 0;
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  margin-top: 0;
}
.jewelcraze-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.jewelcraze-faq-item {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.09);
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jewelcraze-question {
  color: var(--jc-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.jewelcraze-answer {
  color: var(--jc-text-light);
  font-size: 14px;
  margin: 0;
}

/* REVIEWS SECTION */
.jewelcraze-reviews {
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  padding: var(--jc-padding-section) 0;
}
.jewelcraze-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.jewelcraze-review {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: var(--jc-shadow);
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.jewelcraze-review-author {
  color: var(--jc-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.jewelcraze-review-text {
  color: var(--jc-text-light);
  font-size: 14px;
  margin: 0;
}

/* CONCLUSION SECTION */
.jewelcraze-conclusion {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  padding: var(--jc-padding-section) 0;
  border-radius: var(--jc-radius-lg);
  box-shadow: var(--jc-shadow);
  margin-top: 0;
}
.jewelcraze-conclusion p {
  color: var(--jc-text-light);
  font-size: 14px;
  margin-bottom: 16px;
}
.jewelcraze-stats {
  margin: 18px 0 0 0;
}
.jewelcraze-try {
  margin: 22px 0 0 0;
  background: var(--jc-bg);
  background-image: var(--jc-bg-gradient);
  border-radius: var(--jc-radius-md);
  box-shadow: 0 2px 12px 0 rgba(162,89,255,0.09);
  padding: 18px 18px 14px 18px;
  color: var(--jc-accent);
  font-weight: 500;
}

/* FOOTER */
.jewelcraze-footer {
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  border-top: 1px solid var(--jc-border-light);
  box-shadow: 0 -2px 32px 0 rgba(60,40,120,0.09);
  padding: 0;
  margin-top: 0;
}
.jewelcraze-footer-inner {
  max-width: var(--jc-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding: 36px 32px 32px 32px;
}
.jewelcraze-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jewelcraze-footer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: var(--jc-radius-md);
  background: #1b1627;
  box-shadow: 0 2px 10px 0 rgba(162,89,255,0.11);
  margin-bottom: 8px;
}
.jewelcraze-footer-heading {
  color: var(--jc-accent);
  font-size: 1.01rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.jewelcraze-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jewelcraze-footer-link {
  color: var(--jc-text-light);
  text-decoration: none;
  font-size: 14px;
  border-radius: var(--jc-radius-xs);
  padding: 5px 8px;
  transition: color var(--jc-transition), background var(--jc-transition);
}
.jewelcraze-footer-link:hover,
.jewelcraze-footer-link:focus {
  color: var(--jc-accent);
  background: rgba(162,89,255,0.09);
}
.jewelcraze-footer-text {
  color: var(--jc-muted);
  font-size: 13px;
}
.jewelcraze-footer-copyright {
  color: var(--jc-muted);
  font-size: 12px;
  margin-top: 10px;
}

/* COOKIE BANNER */
.jewelcraze-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: var(--jc-card-bg);
  background-image: var(--jc-card-gradient);
  box-shadow: 0 -2px 32px 0 rgba(162,89,255,0.13);
  border-radius: var(--jc-radius-lg) var(--jc-radius-lg) 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 32px;
  transition: transform var(--jc-transition), opacity var(--jc-transition);
}
.jewelcraze-cookie-text {
  color: var(--jc-text-light);
  font-size: 13px;
  margin: 0;
}
.jewelcraze-cookie-button {
  background: var(--jc-accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--jc-radius-md);
  padding: 10px 32px;
  box-shadow: var(--jc-cta-shadow);
  cursor: pointer;
  transition: background var(--jc-transition), color var(--jc-transition), box-shadow var(--jc-transition);
  outline: none;
  letter-spacing: 0.02em;
}
.jewelcraze-cookie-button:hover,
.jewelcraze-cookie-button:focus {
  background: #fff;
  color: var(--jc-accent-dark);
  box-shadow: 0 3px 18px 0 rgba(162,89,255,0.19);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .jewelcraze-header-inner,
  .jewelcraze-container,
  .jewelcraze-footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .jewelcraze-hero-grid,
  .jewelcraze-world-grid,
  .jewelcraze-gameplay-grid,
  .jewelcraze-features-grid,
  .jewelcraze-reviews-grid,
  .jewelcraze-gallery,
  .jewelcraze-faq-grid,
  .jewelcraze-footer-inner {
    gap: 18px;
  }
  .jewelcraze-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jewelcraze-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .jewelcraze-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jewelcraze-faq-grid {
    grid-template-columns: 1fr;
  }
  .jewelcraze-footer-inner {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .jewelcraze-header-inner {
    flex-direction: column;
    gap: 16px;
    min-height: unset;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .jewelcraze-nav-list {
    gap: 10px 10px;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .jewelcraze-hero-grid,
  .jewelcraze-world-grid,
  .jewelcraze-gameplay-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .jewelcraze-hero-content,
  .jewelcraze-world-content,
  .jewelcraze-gameplay-actions,
  .jewelcraze-game-systems {
    padding: 22px 12px 16px 12px;
  }
  .jewelcraze-heading {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .jewelcraze-title {
    font-size: 1.3rem;
  }
  .jewelcraze-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jewelcraze-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .jewelcraze-reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jewelcraze-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 22px 12px 20px 12px;
  }
}

@media (max-width: 600px) {
  :root {
    --jc-padding-section: var(--jc-padding-section-mobile);
  }
  .jewelcraze-header-inner,
  .jewelcraze-container,
  .jewelcraze-footer-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .jewelcraze-header {
    min-height: unset;
  }
  .jewelcraze-hero-content,
  .jewelcraze-world-content,
  .jewelcraze-gameplay-actions,
  .jewelcraze-game-systems,
  .jewelcraze-steps,
  .jewelcraze-contents .jewelcraze-list,
  .jewelcraze-faq-item,
  .jewelcraze-review,
  .jewelcraze-try {
    padding: 13px 7px 11px 7px;
  }
  .jewelcraze-hero {
    padding-top: 18px;
  }
  .jewelcraze-footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 8px 10px 8px;
  }
  .jewelcraze-cookie {
    flex-direction: column;
    gap: 12px;
    padding: 13px 8px;
    font-size: 13px;
  }
  .jewelcraze-ss-img {
    height: 110px;
  }
  .jewelcraze-world-image {
    max-height: 180px;
  }
  .jewelcraze-hero-image,
  .jewelcraze-hero-video {
    max-height: 180px;
  }
}