:root {
  --primary: #ff69b4;
  --primary-dark: #ff1493;
  --primary-light: #ff85c1;
  --secondary: #ffb6c1;
  --accent: #ffe4e9;
  --bg-light: #fff5f8;
  --bg-dark: #1a1a2e;
  --text-dark: #333;
  --text-light: #fff;
  --shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
  --shadow-sm: 0 4px 15px rgba(255, 105, 180, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe4e9 0%, #ffb6c1 50%, #ff69b4 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 2rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-bg-item {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-bg-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
}

.item1 {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.item2 {
  top: 20%;
  right: 12%;
  animation-delay: 1s;
}

.item3 {
  bottom: 35%;
  left: 15%;
  animation-delay: 2s;
}

.item4 {
  top: 35%;
  left: 3%;
  animation-delay: 0.5s;
}

.item4 img {
  width: 60px;
  height: 60px;
}

.item5 {
  bottom: 15%;
  right: 8%;
  animation-delay: 1.5s;
}

.item5 img {
  width: 55px;
  height: 55px;
}

.item6 {
  top: 8%;
  right: 22%;
  animation-delay: 0.3s;
}

.item7 {
  bottom: 45%;
  left: 25%;
  animation-delay: 1.2s;
}

.item8 {
  top: 55%;
  right: 25%;
  animation-delay: 2.5s;
}

.item8 img {
  width: 45px;
  height: 45px;
}

.item9 {
  bottom: 25%;
  left: 5%;
  animation-delay: 0.8s;
}

.item10 {
  top: 70%;
  right: 5%;
  animation-delay: 1.8s;
}

.item10 img {
  width: 50px;
  height: 50px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  animation: pulse 2s ease infinite;
}

.icon-inline {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.title-bunny {
  display: block;
  font-family: 'Pacifico', cursive;
  color: var(--text-light);
}

.title-royale {
  display: block;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background: var(--text-light);
  transform: translateY(-3px);
}

.pulse-btn {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
  }

  50% {
    box-shadow: 0 10px 60px rgba(255, 105, 180, 0.6);
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.hero-bunny-mascot {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 200px;
  animation: mascotBounce 3s ease-in-out infinite;
}

@keyframes mascotBounce {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.bunny-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  transform: none;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  animation: scrollBounce 2s ease infinite;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  margin: 0.5rem auto 0;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.section-icon-img.large-icon {
  width: 72px;
  height: 72px;
}

.section-header h2,
section h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.rewards {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.rewards-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reward-sparkle {
  position: absolute;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  opacity: 0.45;
}

.r1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.r2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.r3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.r4 {
  bottom: 30%;
  right: 10%;
  animation-delay: 0.5s;
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

.rewards-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rewards-info h2 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.rewards-desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.rewards-list {
  list-style: none;
}

.rewards-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #444;
}

.list-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-card>p {
  color: #666;
  margin-bottom: 1.25rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  border: 2px solid var(--secondary);
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.input-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.age-confirm {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 0.25rem 0;
}

.age-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.age-confirm label {
  font-size: 0.9rem;
  color: #555;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-centered {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.form-note {
  margin-top: 0.875rem;
  font-size: 0.85rem;
  color: #888;
}

.gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.placeholder-content {
  text-align: center;
  color: white;
}

.placeholder-icon-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}

.placeholder-text {
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

.character-slider-container {
  overflow: hidden;
  position: relative;
  padding: 1rem;
}

.character-slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.slider-track {
  display: flex;
  gap: 15px;
  animation: infiniteScroll 25s linear infinite;
  width: max-content;
}

.character-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.character-img:hover {
  transform: scale(1.1);
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.video-section {
  text-align: center;
}

.video-section h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem;
}

.play-button {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(255, 105, 180, 0.7);
}

.download {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-bunny {
  position: absolute;
  opacity: 0.25;
  animation: downloadFloat 5s ease-in-out infinite;
}

.download-bunny-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.left-bunny {
  left: 5%;
  top: 20%;
}

.right-bunny {
  right: 5%;
  bottom: 20%;
  animation-delay: 2s;
}

@keyframes downloadFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.download-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.download h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.download-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.download-card {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.platform-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.platform-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.platform-info h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
}

.version {
  color: #888;
  font-size: 0.85rem;
}

.download-details {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.download-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  font-size: 0.9rem;
}

.detail-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-download {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  margin-bottom: 0.875rem;
  justify-content: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.85rem;
}

.security-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.system-requirements {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 20px;
  color: white;
}

.system-requirements h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.req-item {
  text-align: center;
}

.req-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.4rem;
}

.req-item p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.footer-brand .logo-text {
  font-size: 1.6rem;
}

.footer-brand p {
  color: #888;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.link-group h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.link-group a {
  display: block;
  color: #aaa;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.link-group a:hover {
  color: var(--primary);
}

.footer-contact h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
}

.age-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 105, 180, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.age-warning-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.age-warning p {
  color: #ccc;
  font-size: 0.85rem;
}

.copyright {
  color: #666;
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #ffffff00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 100;
}

.back-to-top-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

@media (max-width: 1024px) {
  .hero-bunny-mascot {
    display: absolute;
    opacity: 0.45;
    left: 5%;
    bottom: 40%;
  }

  .rewards-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-sm);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--accent);
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .section-header h2,
  section h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .character-img {
    width: 55px;
    height: 55px;
  }

  .floating-bg-item img {
    width: 30px;
    height: 30px;
  }

  .item4 img,
  .item5 img,
  .item10 img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .download-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .age-warning {
    flex-direction: column;
    text-align: center;
  }

  .character-img {
    width: 45px;
    height: 45px;
    padding: 5px;
  }

  .features,
  .rewards,
  .gallery,
  .download {
    padding: 3rem 1rem;
  }
}