
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #7c3aed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 80px;
}



/* Dynamic background overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.nav-logo a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  border-radius: 50px;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: white;
  transform: translateY(-2px);
}

.nav-signin {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.nav-signin:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-background-shapes::before,
.hero-background-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatShape 20s ease-in-out infinite;
}

.hero-background-shapes::before {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -150px;
  animation-delay: 0s;
}

.hero-background-shapes::after {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: -100px;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.04)"/><circle cx="90" cy="80" r="0.6" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
  animation: float 25s infinite linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-100px) translateX(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 8px 32px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
  line-height: 0.9;
  animation: titleAppear 1s ease-out;
}

@keyframes titleAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: subtitleAppear 1s ease-out 0.2s both;
}

.hero-description {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  animation: subtitleAppear 1s ease-out 0.2s both;
}

.hero-text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-align: justify;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.hero-text:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}



@keyframes subtitleAppear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Highlights */
.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  animation: highlightsAppear 1s ease-out 0.6s both;
}

@keyframes highlightsAppear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  min-width: 220px;
  animation: cardFloat 6s ease-in-out infinite;
}

.highlight-card:nth-child(1) { animation-delay: 0s; }
.highlight-card:nth-child(2) { animation-delay: 2s; }
.highlight-card:nth-child(3) { animation-delay: 4s; }

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

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.highlight-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Premium Bubble Button */
.bubble-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 56px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #ff8a65 100%);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  box-shadow: 
    0 8px 32px rgba(255, 107, 107, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  animation: buttonAppear 1s ease-out 0.4s both;
}

@keyframes buttonAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bubble-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bubble-button:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bubble-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(255, 107, 107, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Premium Content Sections */
section {
  padding: 80px 0;
  position: relative;
}

.explore,
.guide,
.how-it-works {
  background: transparent;
}

/* Luxury Card Containers */
.explore .container,
.guide .container,
.how-it-works .container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 48px auto;
  position: relative;
  overflow: hidden;
}

/* Gradient accent bars */
.explore .container::after,
.guide .container::after,
.how-it-works .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 32px 32px 0 0;
  transition: all 0.3s ease;
}

.explore .container::after {
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}

.guide .container::after {
  background: linear-gradient(90deg, #06b6d4, #0891b2, #0e7490);
}

.how-it-works .container::after {
  background: linear-gradient(90deg, #f59e0b, #f97316, #ef4444);
}

/* Hover effects */
.explore .container:hover,
.guide .container:hover,
.how-it-works .container:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 48px 80px rgba(0, 0, 0, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.explore .container:hover::after,
.guide .container:hover::after,
.how-it-works .container:hover::after {
  height: 8px;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.4);
}

/* Premium Typography */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: justify;
  color: #374151;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn::before {
  content: '';
  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.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  color: white;
  box-shadow: 
    0 8px 32px rgba(99, 102, 241, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(99, 102, 241, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: linear-gradient(135deg, #06b6d4, #0891b2, #0e7490);
  color: white;
  box-shadow: 
    0 8px 32px rgba(6, 182, 212, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(6, 182, 212, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Premium Steps Vertical Layout */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-align: center;
}

.step p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  text-align: left;
  max-width: 100%;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .nav-container {
    height: 70px;
    padding: 0 20px;
  }
  
  .nav-logo a {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 80px 0 100px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-description {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    text-align: left;
  }
  
  
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .highlight-card {
    min-width: 280px;
    padding: 1.2rem 1.5rem;
  }
  
  .bubble-button {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .steps {
    gap: 2rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .explore .container,
  .guide .container,
  .how-it-works .container {
    padding: 40px 28px;
    margin: 32px auto;
    border-radius: 24px;
  }
  
  .step {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }
  
  .step h3 {
    font-size: 1.4rem;
  }
  
  .step p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-highlights {
    margin-top: 2.5rem;
  }
  
  .highlight-card {
    min-width: 260px;
    padding: 1rem 1.2rem;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  .bubble-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .hero-text {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
  }
  
  
  
  .explore .container,
  .guide .container,
  .how-it-works .container {
    padding: 32px 24px;
    margin: 24px auto;
  }
  
  .step {
    padding: 2rem 1.5rem;
  }
}

/* New Explore Page Styles */
.explore-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 1.2rem;
}

.hero-lead {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content Strategy Section */
.content-strategy {
  padding: 80px 0;
  background: transparent;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.strategy-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.strategy-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.strategy-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: transparent;
}

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.categories-group {
  margin-bottom: 4rem;
}

.group-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.popular-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.category-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  height: 100%;
}

.category-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
}

.card-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 500;
}

.popularity {
  font-size: 0.8rem;
  background: linear-gradient(135deg, #ff6b6b, #ffa726);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for new explore layout */
@media (max-width: 768px) {
  .explore-hero {
    padding: 100px 0 60px;
    min-height: 70vh;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .strategy-card {
    padding: 2rem 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .categories-group {
    margin-bottom: 3rem;
  }
  
  .group-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .popular-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    padding: 1.5rem;
    gap: 1.2rem;
  }
  
  .card-icon {
    font-size: 2.2rem;
  }
  
  .card-content h4 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .bubble-button,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .explore-hero {
    padding: 80px 0 50px;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .strategy-card {
    padding: 1.5rem 1.2rem;
  }
  
  .strategy-icon {
    font-size: 2.5rem;
  }
  
  .strategy-card h3 {
    font-size: 1.2rem;
  }
  
  .category-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
  
  .card-icon {
    font-size: 2rem;
    align-self: center;
  }
  
  .card-stats {
    justify-content: center;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* Scroll-based animations with fallback */
.scroll-reveal {
  opacity: 1; /* Fallback to visible */
  transform: translateY(0); /* Fallback to normal position */
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal:not(.js-enabled) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scroll-reveal.js-enabled {
  opacity: 0;
  transform: translateY(50px);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-delay {
  opacity: 1; /* Fallback to visible */
  transform: translateY(0); /* Fallback to normal position */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-delay:not(.js-enabled) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scroll-reveal-delay.js-enabled {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-reveal-delay.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-delay:nth-child(1).revealed {
  transition-delay: 0.1s;
}

.scroll-reveal-delay:nth-child(2).revealed {
  transition-delay: 0.2s;
}

.scroll-reveal-delay:nth-child(3).revealed {
  transition-delay: 0.3s;
}

/* AdSense placeholder */
.adsense-placeholder {
  width: 100%;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  max-width: 728px;
  position: relative;
}

.adsense-placeholder::before {
  content: "Advertisement Space";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
}

/* White background utility class */
.white-bg,
.white-bg *:not(.popularity) {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.white-bg {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.white-bg h4 {
  color: #1a1a1a !important;
}

.white-bg p {
  color: #6b7280 !important;
}

.white-bg .stat {
  color: #9ca3af !important;
}

/* Content cards for explore pages */
.content-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.content-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  position: relative;
  z-index: 5;
}

/* Force white background for category cards */
.category-card,
.category-card *,
.content-card,
.content-card * {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.category-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

.category-card .card-content h4 {
  color: #1a1a1a !important;
}

.category-card .card-content p {
  color: #6b7280 !important;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, #ff6b6b, #ffa726);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.card-section {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  text-align: left;
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-delay {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .explore .container,
  .guide .container,
  .how-it-works .container,
  .step {
    border: 2px solid #000;
    background: #fff;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.cookie-btn.decline {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

.cookie-btn.decline:hover {
  background: rgba(107, 114, 128, 0.2);
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0 20px;
  }
  
  .cookie-text p {
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 140px;
  }
}

/* Footer */
.footer {
  background: #4c1d95;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-section p {
    text-align: center;
  }
}

/* Responsive adjustments for content cards */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .adsense-placeholder {
    height: 200px;
    margin: 1.5rem auto;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .adsense-placeholder {
    height: 150px;
    margin: 1rem auto;
  }
}

/* Legal Pages */
.legal-content {
  padding: 120px 0 80px;
  background: transparent;
}

.legal-content .container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 900px;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #6366f1;
}

.legal-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #374151;
  margin: 2rem 0 1rem 0;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
  text-align: left;
}

.legal-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

.legal-section strong {
  color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 100px 0 60px;
  }
  
  .legal-content .container {
    padding: 40px 28px;
    margin: 0 20px;
  }
  
  .legal-content h1 {
    font-size: 2.2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
}
