/* Article-specific styles */
.article-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-category {
  background: #3a86ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.article-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  background: #e9ecef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #495057;
}

.article-content {
  padding: 60px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.article-intro .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 30px;
}

.quick-nav {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-card:hover {
  background: #3a86ff;
  color: white;
  transform: translateY(-3px);
}

.nav-card i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.nav-card span {
  font-weight: 500;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  color: #212529;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li i {
  color: #3a86ff;
}

.conclusion-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.step-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3a86ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cta-box {
  background: #3a86ff;
  color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
}

.article-footer {
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
  margin-top: 40px;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 500;
  color: #495057;
}

/* Sidebar styles */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: #212529;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.author-bio {
  text-align: center;
}

.author-bio img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-article {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-article:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.related-article h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #212529;
}

.article-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: #e9ecef;
}

.tool-item i {
  color: #3a86ff;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
}

.privacy-note {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 10px;
}

/* More articles section */
.more-articles {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #212529;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-content .category {
  font-size: 0.8rem;
  color: #3a86ff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #212529;
}

.card-content p {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3a86ff;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

.section-cta {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .content-wrapper {
    grid-template-columns: 1fr 250px;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .article-hero, .article-content, .more-articles {
    padding: 30px 0;
  }
}

:root {
      --genz-blue: #0066ff;
      --genz-purple: #8a2be2;
      --genz-pink: #ff3399;
      --genz-gradient: linear-gradient(135deg, var(--genz-blue), var(--genz-purple));
      --genz-bg: #f9fafb;
    }
    
    /* Hero enhancements for Gen Z */
    .genz-hero {
      background: var(--genz-gradient);
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    
    .genz-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,160C960,139,1056,149,1152,165.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
      opacity: 0.2;
    }
    
    .genz-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .genz-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .genz-subtitle {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    /* Emoji decorations */
    .emoji-decor {
      font-size: 2rem;
      margin-right: 10px;
      vertical-align: middle;
    }
    
    /* Gen Z card styles */
    .genz-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      margin: 30px 0;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .genz-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .genz-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--genz-gradient);
    }
    
    .genz-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .genz-card-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: var(--genz-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: white;
      font-size: 1.5rem;
    }
    
    /* Animated list items */
    .genz-list {
      list-style: none;
      padding: 0;
    }
    
    .genz-list li {
      padding: 12px 0;
      border-bottom: 1px solid #f3f4f6;
      display: flex;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
    
    .genz-list li:hover {
      background: #f9fafb;
      padding-left: 10px;
    }
    
    .genz-list li i {
      color: var(--genz-blue);
      margin-right: 12px;
      margin-top: 4px;
    }
    
    /* Stats grid */
    .genz-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .stat-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .stat-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      background: var(--genz-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }
    
    /* Gradient text */
    .gradient-text {
      background: var(--genz-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }
    
    /* Floating animation */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    .float {
      animation: float 5s ease-in-out infinite;
    }
    
    /* Pulse animation */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .pulse {
      animation: pulse 2s ease-in-out infinite;
    }
    
    /* Gen Z CTA */
    .genz-cta {
      background: var(--genz-gradient);
      color: white;
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      margin: 50px 0;
      position: relative;
      overflow: hidden;
    }
    
    .genz-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
      transform: rotate(30deg);
    }
    
    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .genz-btn {
      display: inline-block;
      background: white;
      color: var(--genz-blue);
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .genz-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Social proof section */
    .social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin: 40px 0;
    }
    
    .proof-item {
      display: flex;
      align-items: center;
      background: white;
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .proof-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f0f7ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--genz-blue);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .genz-title {
        font-size: 2.2rem;
      }
      
      .genz-stats {
        grid-template-columns: 1fr;
      }
      
      .social-proof {
        flex-direction: column;
        align-items: stretch;
      }
    }