:root {
  --pink-50: #fff1f6;
  --pink-100: #ffe4ee;
  --pink-200: #ffc9de;
  --pink-300: #ff9fc3;
  --pink-400: #ff7aaf;
  --pink-500: #ff4f98;
  --pink-600: #e23b84;
  --pink-700: #be2f6d;
  --pink-800: #9a285a;
  --pink-900: #7f234c;

  --white: #ffffff;
  --snow: #fdfcfe;
  --gray-50: #faf9fb;
  --gray-100: #f1eff3;
  --gray-200: #e6e2ea;
  --gray-300: #d4cfd9;
  --gray-500: #8b8394;
  --gray-700: #4b4652;
  
  --shadow-sm: 0 2px 8px rgba(255, 79, 152, 0.1);
  --shadow-md: 0 8px 24px rgba(255, 79, 152, 0.15);
  --shadow-lg: 0 16px 48px rgba(255, 79, 152, 0.2);
  --shadow-xl: 0 24px 64px rgba(255, 79, 152, 0.25);

  --container: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-full: 9999px;
}

* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body { 
  height: 100%;
  overflow-x: hidden;
}

html { 
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-700);
  background: linear-gradient(135deg, #fff1f6 0%, #ffe4ee 25%, #fdfcfe 50%, #fff1f6 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  line-height: 1.6;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/background.png') center/cover no-repeat;
  filter: blur(20px) saturate(120%) brightness(1.1);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.25;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.15) translateY(-20px); }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 79, 152, 0.12);
  box-shadow: 0 4px 32px rgba(255, 79, 152, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 79, 152, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.site-header:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 48px rgba(255, 79, 152, 0.15);
  border-bottom-color: rgba(255, 79, 152, 0.2);
}

.site-header:hover .header-bg {
  opacity: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.brand { 
  text-decoration: none; 
  display: flex; 
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover {
  transform: translateY(-2px) scale(1.02);
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 79, 152, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 79, 152, 0.1);
}

.brand:hover .brand-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 79, 152, 0.3);
  border-color: rgba(255, 79, 152, 0.2);
}

.brand-icon img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px rgba(255, 79, 152, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-weight: 700;
  font-size: 22px;
  color: var(--pink-700);
  font-family: 'Press Start 2P', cursive;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(255, 79, 152, 0.25);
  line-height: 1.2;
}

.online-count-badge { 
  font-size: 11px; 
  padding: 4px 10px; 
  border-radius: var(--radius-full); 
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50)); 
  color: var(--pink-700); 
  border: 1px solid var(--pink-200); 
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

#online-count {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 2ch;
  text-align: center;
}

#online-count.updating {
  animation: numberUpdate 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#online-count.increase {
  animation: numberIncrease 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: #22c55e;
}

#online-count.decrease {
  animation: numberDecrease 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ef4444;
}

.online-count-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.online-count-badge .dot { 
  width: 7px; 
  height: 7px; 
  border-radius: var(--radius-full); 
  background: #22c55e; 
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2), 0 0 12px rgba(34, 197, 94, 0.4);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
}

.main-nav ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 28px; 
}

.main-nav a { 
  text-decoration: none; 
  color: var(--gray-700); 
  font-weight: 500; 
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--pink-600));
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.main-nav a:hover { 
  color: var(--pink-700); 
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta { 
  margin-left: 8px; 
}

.nav-toggle { 
  display: none; 
}

.nav-burger { 
  display: none; 
  cursor: pointer; 
  width: 32px; 
  height: 24px; 
  position: relative; 
  z-index: 101;
}

.nav-burger span { 
  position: absolute; 
  left: 0; 
  width: 100%; 
  height: 3px; 
  background: var(--pink-600); 
  border-radius: var(--radius-full); 
  transition: all 0.3s ease; 
}

.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 0; }

.nav-toggle:checked ~ .nav-burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle:checked ~ .nav-burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-burger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active { 
  transform: translateY(2px) scale(0.98); 
}

.btn-primary { 
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500)); 
  color: var(--white); 
  box-shadow: var(--shadow-lg);
  border: none;
}

.btn-primary:hover { 
  background: linear-gradient(135deg, var(--pink-700), var(--pink-600));
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-ghost { 
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--pink-700); 
  border: 2px solid var(--pink-300); 
}

.btn-ghost:hover { 
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.w-full { 
  width: 100%; 
}

.emoji-icon { 
  width: 20px; 
  height: 20px; 
  margin-right: 8px; 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Modal Styles */
.modal.hidden { 
  display: none; 
}

.modal { 
  position: fixed; 
  inset: 0; 
  z-index: 200; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop { 
  position: absolute; 
  inset: 0; 
  background: rgba(0, 0, 0, 0.5); 
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content { 
  position: relative; 
  max-width: 540px; 
  width: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 79, 152, 0.2); 
  border-radius: var(--radius-lg); 
  padding: 32px; 
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
  z-index: 1;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close { 
  position: absolute; 
  right: 16px; 
  top: 16px; 
  width: 36px; 
  height: 36px; 
  border-radius: var(--radius-sm); 
  border: 1px solid var(--pink-200); 
  background: var(--pink-50); 
  color: var(--pink-700); 
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--pink-100);
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 79, 152, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 200, 220, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  filter: blur(30px);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--pink-400);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 80%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 30%;
  top: 70%;
  animation-delay: 4s;
  animation-duration: 16s;
}

.particle:nth-child(4) {
  left: 70%;
  top: 80%;
  animation-delay: 6s;
  animation-duration: 13s;
}

.particle:nth-child(5) {
  left: 50%;
  top: 10%;
  animation-delay: 8s;
  animation-duration: 15s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, -100px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.7;
  }
}

.hero-inner { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 48px; 
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeInUp 0.8s ease;
}

.hero-title-line {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.1;
  color: var(--pink-800);
  font-family: 'Press Start 2P', cursive;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(255, 79, 152, 0.25);
  display: block;
}

.hero-title-line.highlight {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lede { 
  margin: 0 0 40px; 
  font-size: 19px; 
  color: #5c5664;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease 0.2s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pill { 
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px; 
  border-radius: var(--radius-full); 
  font-size: 13px; 
  background: linear-gradient(135deg, rgba(255, 79, 152, 0.15), rgba(255, 200, 220, 0.1));
  backdrop-filter: blur(10px);
  color: var(--pink-700); 
  border: 1px solid rgba(255, 79, 152, 0.2);
  box-shadow: 0 4px 16px rgba(255, 79, 152, 0.15);
  animation: fadeInUp 0.8s ease 0.1s both;
  font-weight: 600;
}

.pill-icon {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-row { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
  margin-bottom: 60px;
}

.hero-cta-primary {
  position: relative;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta-primary:hover .btn-shine {
  left: 100%;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.hero-cta-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 79, 152, 0.1);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--pink-700);
  font-family: 'Press Start 2P', cursive;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(255, 79, 152, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.stat-number.updating {
  animation: numberUpdate 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number.increase {
  animation: numberIncrease 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: #22c55e;
}

.stat-number.decrease {
  animation: numberDecrease 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ef4444;
}

@keyframes numberUpdate {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes numberIncrease {
  0% { 
    transform: scale(1) translateY(0);
    color: var(--pink-700);
  }
  50% { 
    transform: scale(1.2) translateY(-5px);
    color: #22c55e;
    text-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  }
  100% { 
    transform: scale(1) translateY(0);
    color: var(--pink-700);
  }
}

@keyframes numberDecrease {
  0% { 
    transform: scale(1) translateY(0);
    color: var(--pink-700);
  }
  50% { 
    transform: scale(1.2) translateY(5px);
    color: #ef4444;
    text-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  }
  100% { 
    transform: scale(1) translateY(0);
    color: var(--pink-700);
  }
}

.stat-label {
  font-size: 13px;
  color: #8b8394;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Section Styles */
.section { 
  padding: 100px 0; 
  position: relative;
}

.section.alt { 
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 79, 152, 0.1); 
  border-bottom: 1px solid rgba(255, 79, 152, 0.1); 
}

.section-head { 
  text-align: center; 
  margin-bottom: 48px; 
}

.section-head h2 { 
  margin: 0; 
  color: var(--pink-800); 
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-500), var(--pink-600));
  border-radius: var(--radius-full);
  margin: 16px auto 20px;
}

.section-head p { 
  margin: 8px 0 0; 
  color: #5c5664; 
  font-size: 18px;
}

/* Grid Styles */
.grid { 
  display: grid; 
  gap: 24px; 
}

.features { 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}

.gallery { 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
}

.downloads { 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}

/* Card Styles */
.card { 
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 79, 152, 0.15); 
  border-radius: var(--radius-lg); 
  padding: 32px; 
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-500), var(--pink-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 79, 152, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.feature { 
  text-align: center;
}

.feature .icon, 
.dl-card .dl-icon { 
  font-size: 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.card:hover .feature .icon,
.card:hover .dl-card .dl-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature .icon img, 
.dl-card .dl-icon img { 
  width: 32px; 
  height: 32px; 
}

.feature h3, 
.dl-card h3 { 
  margin: 0 0 12px; 
  color: var(--pink-800); 
  font-size: 20px;
  font-weight: 600;
}

.feature p, 
.dl-card p { 
  margin: 0 0 16px; 
  color: #6a6372;
  line-height: 1.7;
}

/* Download Card Styles */
.dl-card {
  position: relative;
  text-align: center;
  padding: 40px 32px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.dl-card.featured {
  border: 2px solid var(--pink-400);
  box-shadow: var(--shadow-xl);
}

.dl-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  box-shadow: var(--shadow-md);
}

.dl-badge.recommended {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
}

.dl-badge.compatible-badge {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.dl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 24px;
  height: 80px;
}

.dl-logo svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.dl-card:hover .dl-logo svg {
  transform: scale(1.1) rotate(5deg);
}

.dl-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pink-800);
  margin: 0 0 8px;
}

.dl-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #8b8394;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.dl-description {
  font-size: 15px;
  color: #6a6372;
  line-height: 1.6;
  margin: 0 0 24px;
  min-height: 48px;
}

.dl-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
  flex-grow: 1;
}

.dl-feature {
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--pink-800);
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
}

.dl-card:hover .dl-feature {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.dl-btn {
  margin-top: auto;
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  border-radius: var(--radius-md);
}

  /* Disabled butonlar için stil */
.dl-btn[href="#"],
.dl-btn[href=""],
.dl-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none;
  background: linear-gradient(135deg, #d4cfd9, #c4bfc9) !important;
  color: #8b8394 !important;
  box-shadow: none !important;
  transform: none !important;
}

.dl-btn[href="#"]:hover,
.dl-btn[href=""]:hover,
.dl-btn.disabled:hover {
  background: linear-gradient(135deg, #d4cfd9, #c4bfc9) !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300));
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Disabled butonlu kartlar için */
.dl-card:has(.dl-btn[href="#"]),
.dl-card:has(.dl-btn[href=""]),
.dl-card:has(.dl-btn.disabled),
.dl-card.card-disabled {
  opacity: 0.85;
}

.dl-card:has(.dl-btn[href="#"]):hover,
.dl-card:has(.dl-btn[href=""]):hover,
.dl-card:has(.dl-btn.disabled):hover,
.dl-card.card-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* Gallery Styles */
.shot { 
  margin: 0; 
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pink-50);
}

.shot-img { 
  border-radius: var(--radius-lg); 
  height: 280px; 
  width: 100%; 
  object-fit: cover; 
  display: block; 
  background: var(--pink-50); 
  border: 1px solid rgba(255, 79, 152, 0.1);
  transition: all 0.4s ease;
}

.shot:hover .shot-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.shot figcaption { 
  margin-top: 12px; 
  text-align: center; 
  font-size: 15px; 
  color: #6a6372;
  font-weight: 500;
}

/* Steps Styles */
.steps { 
  margin-top: 32px; 
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 79, 152, 0.15); 
  border-radius: var(--radius-lg); 
  padding: 32px; 
  box-shadow: var(--shadow-md);
}

.steps h4 { 
  margin: 0 0 20px; 
  color: var(--pink-800); 
  font-size: 22px;
  font-weight: 600;
}

.steps ol { 
  margin: 0 0 16px 24px; 
  line-height: 2;
  color: #5c5664;
}

.steps ol li {
  margin-bottom: 8px;
}

.note { 
  margin: 0; 
  color: #6a6372; 
  font-size: 14px; 
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 79, 152, 0.1);
}

/* FAQ Styles */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 79, 152, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq details:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 79, 152, 0.25);
}

.faq summary {
  font-weight: 600;
  color: var(--pink-800);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  position: relative;
  padding-right: 24px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--pink-600);
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq p {
  margin-top: 12px;
  color: #6a6372;
  line-height: 1.8;
  padding-left: 0;
}

/* Footer Styles */
.site-footer { 
  padding: 48px 0; 
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 79, 152, 0.1);
}

.foot { 
  text-align: center; 
}

.foot p { 
  margin: 8px 0; 
}

.small { 
  font-size: 13px; 
  color: #6a6372; 
}

/* Scrollbar Styles */
:root { 
  --scrollbar-track: var(--pink-50); 
  --scrollbar-thumb: var(--pink-400); 
  --scrollbar-thumb-hover: var(--pink-600); 
}

html { 
  scrollbar-width: thin; 
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track); 
}

::-webkit-scrollbar { 
  width: 12px; 
  height: 12px; 
}

::-webkit-scrollbar-track { 
  background: var(--scrollbar-track); 
}

::-webkit-scrollbar-thumb { 
  background: linear-gradient(135deg, var(--scrollbar-thumb), var(--pink-500));
  border-radius: var(--radius-full); 
  border: 2px solid var(--scrollbar-track); 
}

::-webkit-scrollbar-thumb:hover { 
  background: linear-gradient(135deg, var(--scrollbar-thumb-hover), var(--pink-600));
}

/* Responsive Design */
@media (max-width: 980px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
  }
  
  .gallery { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .features { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .downloads { 
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .dl-card {
    min-height: auto;
    padding: 32px 24px;
  }
  
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 720px) {
  .nav-burger { 
    display: block; 
  }
  
  .main-nav { 
    position: fixed;
    left: 0; 
    right: 0; 
    top: 80px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 79, 152, 0.1); 
    padding: 24px; 
    display: none; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .main-nav ul { 
    flex-direction: column; 
    gap: 12px; 
    width: 100%; 
  }
  
  .main-nav .nav-cta { 
    width: 100%; 
    text-align: center; 
  }
  
  .nav-toggle:checked ~ .main-nav { 
    display: flex; 
  }
  
  .brand {
    gap: 10px;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
  }
  
  .brand-icon img {
    width: 24px;
    height: 24px;
  }
  
  .brand-mark {
    font-size: 18px;
  }
  
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hero-title-line {
    font-size: clamp(28px, 8vw, 48px);
  }
  
  .hero-stats {
    gap: 32px;
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .cta-row {
    flex-direction: column;
  }
  
  .cta-row .btn {
    width: 100%;
  }
  
  .lede {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .gallery { 
    grid-template-columns: 1fr; 
  }
  
  .features { 
    grid-template-columns: 1fr; 
  }
  
  .downloads { 
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .card {
    padding: 24px;
  }
  
  .dl-card {
    padding: 28px 20px;
  }
  
  .dl-badge {
    top: 16px;
    right: 16px;
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .dl-logo {
    height: 64px;
    margin: 16px 0 20px;
  }
  
  .dl-logo svg {
    width: 56px;
    height: 56px;
  }
  
  .dl-card h3 {
    font-size: 20px;
  }
  
  .dl-features {
    margin-bottom: 24px;
  }
  
  .section-head h2 {
    font-size: 28px;
  }
  
  .section-head p {
    font-size: 16px;
  }
}
