/* Gaming to Business Strategy Article Styles */
.gaming-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.gaming-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(41, 128, 185, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(142, 68, 173, 0.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.pixel-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  z-index: 2;
}

.pixel-corner-tl {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

.pixel-corner-tr {
  top: 0;
  right: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.pixel-corner-bl {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.pixel-corner-br {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.article-category {
  display: inline-block;
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  font-size: 14px;
  opacity: 0.9;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.quick-nav {
  background: rgba(108, 92, 231, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-nav h3 {
  margin-top: 0;
  color: #6c5ce7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.nav-card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  color: #2d3436;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #6c5ce7;
}

.nav-card i {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.nav-card span {
  font-weight: 600;
  font-size: 14px;
}

.content-section {
  margin: 60px 0;
}

.content-section h2 {
  color: #2d3436;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section h2 i {
  color: #6c5ce7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.comparison-col h3 {
  color: #6c5ce7;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #dfe6e9;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-list li i {
  color: #00b894;
}

.strategy-example {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
}

.game-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.game-badge {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.game-badge:hover {
  transform: translateY(-5px);
}

.badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 24px;
}

.teamwork-visual {
  margin: 30px 0;
}

.squad-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.role-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #6c5ce7;
  transition: transform 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
}

.role-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #6c5ce7;
  font-size: 20px;
}

.content-highlight {
  background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.content-highlight h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-highlight.highlighted {
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.adaptability-demo {
  margin: 30px 0;
}

.meta-shift-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0;
}

.meta-shift-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  z-index: 1;
}

.timeline-event {
  position: relative;
  text-align: center;
  width: 30%;
  z-index: 2;
}

.event-date {
  background: #6c5ce7;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
}

.event-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.adapt-skills {
  margin: 24px 0;
}

.skill-meter {
  margin-bottom: 20px;
}

.meter-bar {
  height: 10px;
  background: #dfe6e9;
  border-radius: 5px;
  margin: 8px 0;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  border-radius: 5px;
  width: 0;
  transition: width 1.5s ease-in-out;
}

.level-progression {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.level-stage {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.level-stage:hover {
  transform: translateY(-10px);
}

.level-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
}

.level-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #6c5ce7;
  font-size: 28px;
}

.level-stage h4 {
  color: #2d3436;
  margin-bottom: 16px;
}

.level-stage ul {
  text-align: left;
  margin-top: 16px;
  padding-left: 20px;
}

.level-stage li {
  margin-bottom: 8px;
  color: #636e72;
}

.skill-translation {
  margin: 30px 0;
}

.translation-card {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.game-skill, .business-skill {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.arrow {
  padding: 20px;
  color: #6c5ce7;
  font-size: 24px;
}

.genz-stats {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.stat-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #6c5ce7;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #636e72;
}

.key-takeaways {
  margin: 40px 0;
}

.takeaway-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.takeaway-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.takeaway-card:hover {
  transform: translateY(-5px);
}

.takeaway-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #6c5ce7;
  font-size: 24px;
}

.final-cta {
  background: linear-gradient(135deg, #2d3436 0%, #2d3436 100%);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.cta-subtext {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  color: #00cec9;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #dfe6e9;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #2d3436;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-weight: 600;
  color: #2d3436;
}

.social-share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-share:hover {
  transform: scale(1.1);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

/* Sidebar Styles */
.author-bio {
  text-align: center;
}

.author-bio img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-article {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.3s ease;
}

.related-article:hover {
  background: #6c5ce7;
  color: white;
}

.related-article h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.article-meta {
  font-size: 12px;
  opacity: 0.7;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: #6c5ce7;
  color: white;
}

.tool-item i {
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid #dfe6e9;
  border-radius: 6px;
  font-size: 14px;
}

.newsletter-form button {
  width: 100%;
}

.privacy-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
}

/* More Articles Section */
.more-articles {
  padding: 60px 0;
  background: #f8f9fa;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
}

.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: 24px;
}

.card-content .category {
  display: inline-block;
  background: #6c5ce7;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 12px;
}

.card-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
}

.card-content p {
  color: #636e72;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6c5ce7;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.read-more:hover {
  gap: 10px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .translation-card {
    flex-direction: column;
    text-align: center;
  }
  
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .share-buttons {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .squad-roles {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .level-progression {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .meta-shift-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .meta-shift-timeline::before {
    display: none;
  }
  
  .timeline-event {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .squad-roles {
    grid-template-columns: 1fr;
  }
  
  .game-badges {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .takeaway-cards {
    grid-template-columns: 1fr;
  }
}