/* Scoped ONLY to the AR Surf Game highlight block — does not affect other page sections */
.ar-game-showcase {
  position: relative;
  overflow: hidden;
  margin: 36px 0 28px;
  padding: 40px 28px;
  background: #fdf7f6;
  border-radius: 18px;
}

.ar-game-showcase .ar-game-showcase-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.ar-game-showcase .ar-game-showcase-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Soft sliding curve frame — peach offset + stronger top-right radius */
.ar-game-showcase .ar-game-showcase-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 0 14px 14px 0;
}

.ar-game-showcase .ar-game-showcase-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 0;
  bottom: 0;
  background: #f3c6bf;
  border-radius: 28px 78px 28px 28px;
  z-index: 0;
}

.ar-game-showcase .ar-game-showcase-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px 68px 24px 24px;
  box-shadow: 0 18px 40px rgba(233, 55, 43, 0.14);
  object-fit: cover;
  background: transparent;
}

.ar-game-showcase .ar-game-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}

.ar-game-showcase .ar-game-showcase-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #E9372B;
}

.ar-game-showcase .ar-game-rule {
  display: inline-block;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: #E9372B;
}

.ar-game-showcase .ar-game-showcase-title {
  margin: 0;
  font-family: "Manrope-Bold", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #1e1e1e;
}

.ar-game-showcase .ar-game-showcase-title span {
  color: #E9372B;
}

.ar-game-showcase .ar-game-showcase-text {
  margin: 18px 0 0;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a4a4a;
}

.ar-game-showcase .ar-game-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #E9372B;
  color: #fff;
  text-decoration: none;
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 15px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ar-game-showcase .ar-game-showcase-cta:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-1px);
}

.ar-game-showcase .ar-game-showcase-cta i {
  font-size: 16px;
}

@media (max-width: 991px) {
  .ar-game-showcase {
    padding: 32px 18px;
  }

  .ar-game-showcase .ar-game-showcase-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ar-game-showcase .ar-game-showcase-frame {
    max-width: 340px;
  }

  .ar-game-showcase .ar-game-showcase-frame::before {
    border-radius: 24px 64px 24px 24px;
  }

  .ar-game-showcase .ar-game-showcase-media img {
    border-radius: 20px 56px 20px 20px;
  }

  .ar-game-showcase .ar-game-showcase-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .ar-game-showcase .ar-game-showcase-frame {
    max-width: 280px;
  }

  .ar-game-showcase .ar-game-showcase-frame::before {
    border-radius: 20px 52px 20px 20px;
  }

  .ar-game-showcase .ar-game-showcase-media img {
    border-radius: 18px 48px 18px 18px;
  }

  .ar-game-showcase .ar-game-showcase-title {
    font-size: 24px;
  }

  .ar-game-showcase .ar-game-showcase-text {
    font-size: 14px;
  }

  .ar-game-showcase .ar-game-showcase-cta {
    padding: 12px 22px;
    font-size: 14px;
  }
}
