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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.nav-logo-img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #c44cff, #ff6b9d);
  border-radius: 3px;
}

.logo:hover .nav-logo-img {
  opacity: 0;
}

.logo:hover .hamburger-icon {
  opacity: 1;
}

.logo-dropdown {
  position: fixed;
  top: 80px;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 0 0 12px 0;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: none;
  z-index: 1000;
}

.logo-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #1a1a2e;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  cursor: pointer;
}

.logo-dropdown-item:hover {
  background: linear-gradient(90deg, rgba(196, 76, 255, 0.1), rgba(255, 107, 157, 0.1));
  border-left-color: #c44cff;
  padding-left: 25px;
  color: #c44cff;
}

.logo-dropdown-item.has-submenu {
  position: relative;
}

.logo-dropdown-item.has-submenu::after {
  content: '▸';
  position: absolute;
  right: 15px;
  font-size: 12px;
}

.logo-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 0 12px 12px 0;
  padding: 10px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-dropdown-item.has-submenu:hover .logo-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.unavailable-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.unavailable-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.unavailable-popup {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
  transform: scale(0.9);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 76, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.unavailable-popup-overlay.active .unavailable-popup {
  transform: scale(1);
}

.unavailable-popup h3 {
  color: #ff6b9d;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.unavailable-popup p {
  color: #ccc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.unavailable-popup .telegram-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.unavailable-popup .telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(196, 76, 255, 0.4);
}

.unavailable-popup .close-btn {
  display: inline-block;
  background: transparent;
  color: #888;
  padding: 12px 20px;
  border: 1px solid #555;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.unavailable-popup .close-btn:hover {
  border-color: #888;
  color: #fff;
}

.nav-logo-img {
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, #ff6b9d, #c44cff, #00d4aa, #ff6b9d);
  background-size: 300% 300%;
  animation: logoRingShift 4s ease-in-out infinite;
}

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

.logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 45px;
  height: 6px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(196, 76, 255, 0.3);
}

.nav-logo-img {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c44cff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8fc 0%, #f0f8ff 50%, #fff5f8 100%);
}

.hero-logo {
  margin-bottom: 30px;
}

.hero-logo-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, rgba(196, 76, 255, 0.15) 30%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(220px, 40vw, 500px);
  font-weight: 400;
  letter-spacing: 30px;
  background: linear-gradient(135deg, rgba(196, 76, 255, 0.15), rgba(255, 107, 157, 0.12), rgba(107, 157, 255, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 80px rgba(196, 76, 255, 0.1);
}

.circular-logo {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff6b9d;
  border-right-color: #6b9dff;
  animation: ringRotate 3s linear infinite;
}

.logo-ring.ring-2 {
  width: 85%;
  height: 85%;
  border-width: 2px;
  border-top-color: #c44cff;
  border-right-color: #ffb36b;
  animation: ringRotate 4s linear infinite reverse;
}

.logo-ring.ring-3 {
  width: 70%;
  height: 70%;
  border-width: 2px;
  border-top-color: #6bffc4;
  border-right-color: #ff6b9d;
  animation: ringRotate 5s linear infinite;
}

.logo-text {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(135deg, #ff6b9d, #c44cff, #6b9dff, #6bffc4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  z-index: 2;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(56px, 10vw, 84px);
  font-weight: 700;
  margin: 20px 0;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #1d1d1f, #c44cff, #ff6b9d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.ph-small {
  font-size: 0.5em;
  letter-spacing: 1px;
}

.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d, #c44cff, #6b9dff);
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: gradientShift 3s ease infinite;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(196, 76, 255, 0.4);
}

.products-section {
  padding: 120px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1d1d1f, #c44cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #6e6e73;
  font-size: 21px;
  margin-bottom: 80px;
}

.products-shelf {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shelf-item {
  position: relative;
  background: #ffffff;
  border-radius: 0;
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
  border: 1px solid #d0d0d0;
  overflow: visible;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
  margin-left: 10px;
  margin-bottom: 10px;
}

.shelf-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, #d0d0d0 0%, #b0b0b0 100%);
  transform: skewY(-45deg);
  transform-origin: top right;
  border-left: 2px solid #888;
  z-index: 1;
}

.shelf-item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: calc(100% - 10px);
  height: 10px;
  background: linear-gradient(90deg, #c0c0c0 0%, #a0a0a0 100%);
  transform: skewX(-45deg);
  transform-origin: top left;
  border-bottom: 2px solid #888;
  border-right: 2px solid #888;
  z-index: 0;
}

.shelf-item:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px) scale(1.01);
}

.shelf-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.shelf-item:hover .shelf-glow {
  opacity: 1;
}

.shelf-content {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.shelf-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
}

.shelf-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
}

.shelf-info {
  flex: 1;
}

.shelf-info h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.shelf-info p {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.shelf-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shelf-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 0 0 20px 20px;
  transition: height 0.3s ease;
}

.shelf-item:hover .shelf-base {
  height: 6px;
}

.shelf-1 { border: 2px solid #00d4aa; }
.shelf-1::before { background: linear-gradient(180deg, #6bffc4 0%, #00d4aa 100%); border-left: 2px solid #009980; }
.shelf-1::after { background: linear-gradient(90deg, #5be0ae 0%, #00b090 100%); border-bottom: 2px solid #008870; }
.shelf-1 .shelf-icon { background: linear-gradient(135deg, #6bffc4, #00d4aa); }
.shelf-1 .shelf-tag { background: linear-gradient(135deg, #6bffc4, #00d4aa); }

.shelf-2 { border: 2px solid #ff8e53; }
.shelf-2::before { background: linear-gradient(180deg, #ffb36b 0%, #ff8e53 100%); border-left: 2px solid #d06030; }
.shelf-2::after { background: linear-gradient(90deg, #e09050 0%, #d07040 100%); border-bottom: 2px solid #b05020; }
.shelf-2 .shelf-icon { background: linear-gradient(135deg, #ffb36b, #ff8e53); }
.shelf-2 .shelf-tag { background: linear-gradient(135deg, #ffb36b, #ff8e53); }

.shelf-3 { border: 2px solid #ff4777; }
.shelf-3::before { background: linear-gradient(180deg, #ff6b9d 0%, #ff4777 100%); border-left: 2px solid #d03060; }
.shelf-3::after { background: linear-gradient(90deg, #e05080 0%, #c03060 100%); border-bottom: 2px solid #a02050; }
.shelf-3 .shelf-icon { background: linear-gradient(135deg, #ff6b9d, #ff4777); }
.shelf-3 .shelf-tag { background: linear-gradient(135deg, #ff6b9d, #ff4777); }

.shelf-4 { border: 2px solid #ffb800; }
.shelf-4::before { background: linear-gradient(180deg, #ffd06b 0%, #ffb800 100%); border-left: 2px solid #c09000; }
.shelf-4::after { background: linear-gradient(90deg, #e0b050 0%, #c09000 100%); border-bottom: 2px solid #a08000; }
.shelf-4 .shelf-icon { background: linear-gradient(135deg, #ffd06b, #ffb800); }
.shelf-4 .shelf-tag { background: linear-gradient(135deg, #ffd06b, #ffb800); }

.shelf-5 { border: 2px solid #4776ff; }
.shelf-5::before { background: linear-gradient(180deg, #6b9dff 0%, #4776ff 100%); border-left: 2px solid #3060c0; }
.shelf-5::after { background: linear-gradient(90deg, #5080e0 0%, #3060c0 100%); border-bottom: 2px solid #2050a0; }
.shelf-5 .shelf-icon { background: linear-gradient(135deg, #6b9dff, #4776ff); }
.shelf-5 .shelf-tag { background: linear-gradient(135deg, #6b9dff, #4776ff); }

.shelf-6 { border: 2px solid #a020f0; }
.shelf-6::before { background: linear-gradient(180deg, #c44cff 0%, #a020f0 100%); border-left: 2px solid #8020c0; }
.shelf-6::after { background: linear-gradient(90deg, #a040d0 0%, #8020c0 100%); border-bottom: 2px solid #6010a0; }
.shelf-6 .shelf-icon { background: linear-gradient(135deg, #c44cff, #a020f0); }
.shelf-6 .shelf-tag { background: linear-gradient(135deg, #c44cff, #a020f0); }

.shelf-7 { border: 2px solid #ff47b7; }
.shelf-7::before { background: linear-gradient(180deg, #ff6bd4 0%, #ff47b7 100%); border-left: 2px solid #c03090; }
.shelf-7::after { background: linear-gradient(90deg, #e050b0 0%, #c03090 100%); border-bottom: 2px solid #a02080; }
.shelf-7 .shelf-icon { background: linear-gradient(135deg, #ff6bd4, #ff47b7); }
.shelf-7 .shelf-tag { background: linear-gradient(135deg, #ff6bd4, #ff47b7); }

.shop-section {
  padding: 100px 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f0ff 50%, #fff0f5 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.islands-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}

.shop-island {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(196, 76, 255, 0.15);
  border: 2px solid rgba(196, 76, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.island-guide {
  border-color: rgba(107, 157, 255, 0.3);
  box-shadow: 0 20px 60px rgba(107, 157, 255, 0.15);
}

.island-guide h2 {
  font-size: 20px;
  background: linear-gradient(135deg, #6b9dff, #4776ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.island-guide .shop-button {
  background: linear-gradient(135deg, #6b9dff, #4776ff);
}

.island-anabolic {
  border-color: rgba(255, 71, 119, 0.3);
  box-shadow: 0 20px 60px rgba(255, 71, 119, 0.15);
}

.island-anabolic h2 {
  font-size: 20px;
  background: linear-gradient(135deg, #ff6b9d, #ff4777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.island-anabolic .shop-button {
  background: linear-gradient(135deg, #ff6b9d, #ff4777);
}

.shop-island:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(196, 76, 255, 0.25);
}

.shop-island h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.shop-island p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.shop-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.shop-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(196, 76, 255, 0.4);
}

.shop-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 25px;
}

.shop-link {
  color: #c44cff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid #c44cff;
  border-radius: 25px;
  transition: all 0.3s;
}

.shop-link:hover {
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  color: #fff;
  border-color: transparent;
}

.about-section {
  padding: 120px 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f0ff 50%, #fff0f5 100%);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature {
  padding: 40px;
  background: #ffffff;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d, #c44cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.feature h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.feature p {
  color: #6e6e73;
  font-size: 15px;
}

.contact-section {
  padding: 150px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff0f5 0%, #f0f8ff 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, rgba(196, 76, 255, 0.1) 40%, transparent 70%);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.contact-content p {
  font-size: 21px;
  color: #6e6e73;
  margin-bottom: 40px;
}

.footer {
  padding: 60px 50px;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  padding: 1px;
  background: linear-gradient(135deg, #ff6b9d, #c44cff, #00d4aa, #ff6b9d);
  background-size: 300% 300%;
  animation: logoRingShift 4s ease-in-out infinite;
}

.footer p {
  color: #6e6e73;
  font-size: 12px;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 11px !important;
  color: #999 !important;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.product-page {
  padding: 120px 50px 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff8fc 0%, #ffffff 30%, #f0f8ff 100%);
}

.product-page-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #1d1d1f, #c44cff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-floating-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-floating-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.product-image-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder::before {
  display: none;
}

.product-image-placeholder::after {
  display: none;
}

.floating-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.product-sticker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0.9;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.product-details {
  padding: 30px;
  text-align: center;
}

.product-details h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.product-details p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-cta {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-cta:hover {
  transform: scale(1.05);
}

.card-1 .product-image-placeholder { background: linear-gradient(135deg, #6bffc4, #00d4aa); }
.card-1 .floating-badge { background: linear-gradient(135deg, #00d4aa, #6bffc4); }
.card-1 .product-cta { background: linear-gradient(135deg, #6bffc4, #00d4aa); }

.card-2 .product-image-placeholder { background: linear-gradient(135deg, #ffb36b, #ff8e53); }
.card-2 .floating-badge { background: linear-gradient(135deg, #ff8e53, #ffb36b); }
.card-2 .product-cta { background: linear-gradient(135deg, #ffb36b, #ff8e53); }

.card-3 .product-image-placeholder { background: linear-gradient(135deg, #ff6b9d, #ff4777); }
.card-3 .floating-badge { background: linear-gradient(135deg, #ff4777, #ff6b9d); }
.card-3 .product-cta { background: linear-gradient(135deg, #ff6b9d, #ff4777); }

.card-4 .product-image-placeholder { background: linear-gradient(135deg, #ffd06b, #ffb800); }
.card-4 .floating-badge { background: linear-gradient(135deg, #ffb800, #ffd06b); }
.card-4 .product-cta { background: linear-gradient(135deg, #ffd06b, #ffb800); }

.card-5 .product-image-placeholder { background: linear-gradient(135deg, #6b9dff, #4776ff); }
.card-5 .floating-badge { background: linear-gradient(135deg, #4776ff, #6b9dff); }
.card-5 .product-cta { background: linear-gradient(135deg, #6b9dff, #4776ff); }

.card-6 .product-image-placeholder { background: linear-gradient(135deg, #c44cff, #a020f0); }
.card-6 .floating-badge { background: linear-gradient(135deg, #a020f0, #c44cff); }
.card-6 .product-cta { background: linear-gradient(135deg, #c44cff, #a020f0); }

.card-7 .product-image-placeholder { background: linear-gradient(135deg, #ff6bd4, #ff47b7); }
.card-7 .floating-badge { background: linear-gradient(135deg, #ff47b7, #ff6bd4); }
.card-7 .product-cta { background: linear-gradient(135deg, #ff6bd4, #ff47b7); }

.guide-page {
  padding: 120px 50px 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff8fc 0%, #ffffff 30%, #f0f8ff 100%);
}

.guide-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1d1d1f, #c44cff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guide-subtitle {
  text-align: center;
  color: #6e6e73;
  font-size: 18px;
  margin-bottom: 60px;
}

.guide-content {
  max-width: 900px;
  margin: 0 auto;
}

.guide-section {
  margin-bottom: 50px;
}

.guide-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1d1d1f;
}

.guide-list {
  list-style: none;
  padding: 0;
}

.guide-list li {
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #c44cff;
  font-size: 16px;
  color: #333;
}

.step-card {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.step-content p {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.6;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.tip-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.tip-card p {
  color: #6e6e73;
  font-size: 14px;
}

.card-anabolic-1 .product-image-placeholder { background: linear-gradient(135deg, #ff4444, #cc0000); }
.card-anabolic-1 .floating-badge { background: linear-gradient(135deg, #cc0000, #ff4444); }
.card-anabolic-1 .product-cta { background: linear-gradient(135deg, #ff4444, #cc0000); }

.card-anabolic-2 .product-image-placeholder { background: linear-gradient(135deg, #44aa44, #228822); }
.card-anabolic-2 .floating-badge { background: linear-gradient(135deg, #228822, #44aa44); }
.card-anabolic-2 .product-cta { background: linear-gradient(135deg, #44aa44, #228822); }

.card-anabolic-3 .product-image-placeholder { background: linear-gradient(135deg, #ffaa00, #cc8800); }
.card-anabolic-3 .floating-badge { background: linear-gradient(135deg, #cc8800, #ffaa00); }
.card-anabolic-3 .product-cta { background: linear-gradient(135deg, #ffaa00, #cc8800); }

.card-anabolic-4 .product-image-placeholder { background: linear-gradient(135deg, #aa44ff, #7722cc); }
.card-anabolic-4 .floating-badge { background: linear-gradient(135deg, #7722cc, #aa44ff); }
.card-anabolic-4 .product-cta { background: linear-gradient(135deg, #aa44ff, #7722cc); }

.card-anabolic-5 .product-image-placeholder { background: linear-gradient(135deg, #44cccc, #229999); }
.card-anabolic-5 .floating-badge { background: linear-gradient(135deg, #229999, #44cccc); }
.card-anabolic-5 .product-cta { background: linear-gradient(135deg, #44cccc, #229999); }

.card-anabolic-6 .product-image-placeholder { background: linear-gradient(135deg, #cc44aa, #992277); }
.card-anabolic-6 .floating-badge { background: linear-gradient(135deg, #992277, #cc44aa); }
.card-anabolic-6 .product-cta { background: linear-gradient(135deg, #cc44aa, #992277); }

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 12px;
  }
  
  .circular-logo {
    width: 200px;
    height: 200px;
  }
  
  .logo-text {
    font-size: 40px;
    letter-spacing: 6px;
  }
  
  .products-section,
  .about-section,
  .contact-section,
  .product-page {
    padding: 80px 20px;
  }
  
  .section-title,
  .about-content h2,
  .contact-content h2,
  .product-page-title {
    font-size: 36px;
  }
  
  .shelf-item {
    padding: 25px;
  }
  
  .shelf-content {
    flex-direction: column;
    text-align: center;
  }
  
  .shelf-icon {
    margin-bottom: 15px;
  }
  
  .shelf-info h3 {
    font-size: 22px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* Product Detail Page Styles */
.product-detail-page {
  padding: 120px 40px 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, #fdfbfb 0%, #f8f4ff 100%);
}

.product-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  background: linear-gradient(135deg, rgba(196, 76, 255, 0.1), rgba(255, 107, 157, 0.1));
  border-radius: 30px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.product-detail-image.anabolic-detail {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 77, 77, 0.1));
}

.detail-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.detail-product-img {
  max-width: 200px;
  border-radius: 20px;
}

.product-detail-info h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.product-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #c44cff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.product-description {
  color: #6e6e73;
  line-height: 1.8;
}

.product-description p {
  margin-bottom: 20px;
  font-size: 16px;
}

.product-description h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 30px 0 15px;
  letter-spacing: 1px;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.product-description li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 15px;
}

.product-description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  border-radius: 50%;
}

.buy-now-button {
  display: inline-block;
  margin-top: 30px;
  margin-right: 15px;
  padding: 16px 45px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #00d4aa, #00b090);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.3);
}

.buy-now-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.product-buttons .back-button,
.product-buttons .buy-now-button {
  margin-top: 0;
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 76, 255, 0.3);
}

@media (max-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-detail-page {
    padding: 100px 20px 60px;
  }
  
  .product-detail-info h1 {
    font-size: 36px;
  }
}

/* Supply Cards */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.supply-card {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 176, 144, 0.05));
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.supply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
  border-color: rgba(0, 212, 170, 0.6);
}

.supply-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.supply-card p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 15px;
  line-height: 1.5;
}

.supply-btn {
  display: inline-block;
  padding: 10px 25px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #00d4aa, #00b090);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.supply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
}

.supply-btn.kit-btn {
  background: linear-gradient(135deg, #c44cff, #ff6b9d);
}

.supply-btn.kit-btn:hover {
  box-shadow: 0 5px 20px rgba(196, 76, 255, 0.4);
}

@media (max-width: 600px) {
  .supply-grid {
    grid-template-columns: 1fr;
  }
}

/* Supply Detail Page Styling */
.supply-image {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 176, 144, 0.08));
}

.supply-badge {
  background: linear-gradient(135deg, #00d4aa, #00b090) !important;
}

.kit-image {
  background: linear-gradient(135deg, rgba(196, 76, 255, 0.15), rgba(255, 107, 157, 0.08));
}

.kit-badge {
  background: linear-gradient(135deg, #c44cff, #ff6b9d) !important;
}

/* Tips & Advice Page */
.section-intro {
  color: #6e6e73;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.subsection-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin-top: 35px;
  margin-bottom: 20px;
}

/* Medical Disclaimer */
.medical-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.08));
  border: 1px solid rgba(255, 152, 0, 0.4);
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.disclaimer-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e65100;
  margin-bottom: 10px;
}

.disclaimer-content p {
  font-size: 14px;
  color: #5d4037;
  line-height: 1.7;
  margin: 0;
}

.disclaimer-content strong {
  color: #bf360c;
}

/* Product Section Titles */
.product-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-section-desc {
  text-align: center;
  color: #6e6e73;
  font-size: 16px;
  margin-bottom: 40px;
}

.section-divider {
  width: 100%;
  max-width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #c44cff, #ff6b9d);
  margin: 60px auto;
  border-radius: 3px;
}

/* Category Islands */
.categories-page {
  text-align: center;
}

.page-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 50px;
}

.category-islands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-island {
  background: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.category-island::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, #c44cff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-island:hover::before {
  transform: scaleX(1);
}

.category-island:hover {
  transform: translateY(-8px);
  border-color: var(--accent, #c44cff);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.category-island h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.category-island p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.category-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent, #c44cff);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.category-island:hover .category-cta {
  transform: scale(1.05);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent, #c44cff) 40%, transparent);
}

.back-link {
  display: inline-block;
  color: #c44cff;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #ff6b9d;
}

.sarm-card,
.supplement-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

/* Coming Soon Overlay */
.coming-soon {
  position: relative;
}

.coming-soon::after {
  content: 'COMING SOON!';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  z-index: 10;
}

/* Mind & Body Page - Psychedelic Styles */
.psychedelic-link {
  background: linear-gradient(90deg, #ff6b9d, #c44cff, #00d4aa, #ff6b9d);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: psychedelicShift 3s ease-in-out infinite;
  font-weight: 700 !important;
}

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

.mind-body-page {
  min-height: 100vh;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.psychedelic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(196, 76, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 60%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.mind-body-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.floating-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  animation: floatText 4s ease-in-out infinite;
}

.psychedelic-text {
  background: linear-gradient(90deg, #ff6b9d, #c44cff, #00d4aa, #ff6b9d);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: psychedelicShift 4s ease-in-out infinite, floatText 4s ease-in-out infinite;
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 60px;
  animation: floatText 4s ease-in-out infinite 0.5s;
}

.floating-card {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card.delay-1 { animation-delay: 0.2s; }
.floating-card.delay-2 { animation-delay: 0.4s; }
.floating-card.delay-3 { animation-delay: 0.6s; }
.floating-card.delay-4 { animation-delay: 0.8s; }
.floating-card.delay-5 { animation-delay: 1s; }

.philosophy-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.philosophy-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: rgba(196, 76, 255, 0.5);
  box-shadow: 0 10px 40px rgba(196, 76, 255, 0.2);
}

.pillar-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.psychedelic-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(196, 76, 255, 0.5)); }
  50% { filter: drop-shadow(0 0 25px rgba(0, 212, 170, 0.8)); }
}

.pillar-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, rgba(196, 76, 255, 0.1), rgba(0, 212, 170, 0.1));
  border: 1px solid rgba(196, 76, 255, 0.3);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.psychedelic-btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c44cff, #ff6b9d, #00d4aa);
  background-size: 200% 200%;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: btnGradient 3s ease-in-out infinite;
}

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

.psychedelic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 76, 255, 0.4);
}

.psychedelic-btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: none;
}

.psychedelic-btn.outline:hover {
  border-color: #c44cff;
  box-shadow: 0 10px 30px rgba(196, 76, 255, 0.3);
}

/* Substance Islands */
.substances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.substance-island {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.substance-island::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-color, #c44cff) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.substance-island:hover::before {
  opacity: 0.15;
}

.substance-island:hover {
  border-color: var(--glow-color, #c44cff);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px color-mix(in srgb, var(--glow-color, #c44cff) 30%, transparent);
}

.substance-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: glowPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.substance-island h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.substance-aka {
  font-size: 14px;
  color: var(--glow-color, #c44cff);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.substance-island p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.psychedelic-btn.small {
  padding: 12px 28px;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .floating-title {
    font-size: 42px;
  }
  
  .mind-body-page {
    padding: 100px 20px 60px;
  }
  
  .philosophy-card, .cta-section {
    padding: 30px 20px;
  }
  
  .substances-grid {
    grid-template-columns: 1fr;
  }
}
