body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  overflow-x: hidden;

  background: linear-gradient(135deg, #fbc2eb, #f9a8d4, #c3a6ff);
  background-size: 400% 400%;
  animation: gradientMove 14s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-shell {
  padding: 40px 16px 70px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

h1 {
  text-align: center;
  color: #ff6b9d;
}

h2 {
  margin-top: 30px;
  color: #7a5cff;
}

.icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.gallery img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

/* Header */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;

  /* MORE PURPLE + PINK (no yellow) */
  background: linear-gradient(135deg, #d6c4ff, #c3a6ff, #fbc2eb, #f9a8d4);

  background-size: 300% 300%;
  animation: nuttyHeaderMove 14s ease infinite;

  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.12),
    0 0 12px rgba(195,166,255,0.15); /* subtle purple glow */
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #6b3fa0;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  padding: 0;
  align-items: center;
}

.site-nav a:not(.appstore-btn):not(.brand-link) {
  color: #5e35a8; 
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.site-nav a:not(.appstore-btn):not(.brand-link):hover,
.site-nav a:not(.appstore-btn):not(.brand-link).active {
  color: #5e35a8; 

  text-shadow:
    0 0 6px rgba(255, 107, 157, 0.35),
    0 0 12px rgba(195, 166, 255, 0.25); /* 👈 purple glow instead of yellow */

  transform: translateY(-1px);
}

.appstore-item {
  display: flex;
  align-items: center;
}

.appstore-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6b9d, #c3a6ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.appstore-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.appstore-text .small {
  font-size: 10px;
  opacity: 0.8;
}

.appstore-text .big {
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #6b3fa0;
  margin: 5px 0;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 28px;
}

.feature-card {
  background: linear-gradient(135deg, #ff6fa5 0%, #ff9ecb 50%, #ffd1e6 100%);
  color: #2b1b2b;

  padding: 20px;
  border-radius: 16px;

  box-shadow:
    0 8px 20px rgba(255, 105, 160, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.1);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card p {
  color: rgba(43, 27, 43, 0.8);
}
.feature-card h3 {
  margin-bottom: 10px;
  color: #2b1b2b;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.6;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 28px rgba(255, 105, 160, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.12);
}
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 30px;
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav ul {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  }

  .site-nav ul.open {
    display: flex;
  }

  .site-nav a:not(.appstore-btn):not(.brand-link) {
    color: #6b3fa0 !important;
    text-shadow: none !important;
    padding: 12px;
    text-align: center;
    transform: none !important;
  }

  .site-nav a:not(.appstore-btn):not(.brand-link):hover,
  .site-nav a:not(.appstore-btn):not(.brand-link).active {
    color: #ff6b9d !important;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 12px;
  }

  .appstore-item {
    justify-content: center;
    padding-top: 10px;
  }

  .container {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .gallery img {
    width: 100%;
    max-width: 280px;
  }
}
}