/* Guides & Reviews Specific Styles */

/* Guides Hero Section */
.guides-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.7), rgba(118, 75, 162, 0.6)), url("image/banner2.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.guides-hero .hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.guides-hero .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guides-hero .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.guides-hero .stat-label {
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Game Categories Section */
.game-categories {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 5rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.category-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-count {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

/* Expert Reviews Section */
.expert-reviews {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
}

.reviews-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.featured-review {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-game-art {
  height: 300px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.review-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content {
  padding: 2rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.review-header h3 {
  font-size: 1.8rem;
  color: #333;
  flex: 1;
}

.review-score {
  text-align: center;
  margin-left: 1rem;
}

.score {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #667eea;
  line-height: 1;
}

.stars {
  color: #feca57;
  margin-top: 0.5rem;
}

.review-excerpt {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.review-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.highlight-item i {
  color: #2ecc71;
}

.highlight-item:has(.fa-minus-circle) i {
  color: #e74c3c;
}

.review-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mini-review {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mini-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mini-review-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.mini-review-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.mini-review h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.mini-score {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.mini-review p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Advanced Strategies Section */
.advanced-strategies {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding: 5rem 0;
}

.strategies-container {
  margin-top: 3rem;
}

.strategy-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.strategy-tab {
  padding: 1rem 2rem;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.strategy-tab.active,
.strategy-tab:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
}

.strategy-panel {
  display: none;
}

.strategy-panel.active {
  display: block;
}

.strategy-panel h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.strategy-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.strategy-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.strategy-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.difficulty {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Video Tutorials Section */
.video-tutorials {
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
  padding: 5rem 0;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tutorial-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tutorial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tutorial-thumbnail {
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
}

.tutorial-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

.tutorial-info {
  padding: 1.5rem;
}

.tutorial-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.tutorial-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tutorial-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.tutorial-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Pro Tips Section */
.pro-tips {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 5rem 0;
}

.tips-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tip-header i {
  font-size: 1.5rem;
  color: #667eea;
}

.tip-category {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.tip-card p {
  color: #666;
  line-height: 1.6;
}

/* Achievement Guides Section */
.achievement-guides {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
}

.achievements-container {
  margin-top: 3rem;
}

.achievement-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.achievement-tab {
  padding: 0.8rem 1.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.achievement-tab.active,
.achievement-tab:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #feca57, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.achievement-info {
  flex: 1;
}

.achievement-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.achievement-info p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.achievement-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.difficulty {
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-weight: bold;
  color: white;
}

.difficulty.easy {
  background: #2ecc71;
}

.difficulty.medium {
  background: #f39c12;
}

.difficulty.hard {
  background: #e74c3c;
}

.completion {
  color: #888;
}

.achievement-guide {
  color: #667eea;
  font-size: 1.2rem;
}

/* Difficulty Levels Section */
.difficulty-levels {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding: 5rem 0;
}

.difficulty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.difficulty-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.difficulty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.difficulty-card.beginner::before {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.difficulty-card.intermediate::before {
  background: linear-gradient(45deg, #f39c12, #e67e22);
}

.difficulty-card.expert::before {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.difficulty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.difficulty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.difficulty-card.beginner .difficulty-icon {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.difficulty-card.intermediate .difficulty-icon {
  background: linear-gradient(45deg, #f39c12, #e67e22);
}

.difficulty-card.expert .difficulty-icon {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.difficulty-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.difficulty-card p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.difficulty-features {
  text-align: left;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.feature i {
  color: #2ecc71;
}

.guide-count {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
}

/* Community Guides Section */
.community-guides {
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
  padding: 5rem 0;
}

.community-content {
  margin-top: 3rem;
}

.featured-community-guide {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.guide-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-info h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.author-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.author-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.guide-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.guide-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.guide-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.community-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.community-guide-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.community-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.guide-thumbnail {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.community-guide-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.guide-author-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #888;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rating i {
  color: #feca57;
}

/* Latest Updates Section */
.latest-updates {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 5rem 0;
}

.updates-timeline {
  margin-top: 3rem;
  position: relative;
}

.updates-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-date {
  width: 100px;
  text-align: center;
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.timeline-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
}

.timeline-date .month {
  display: block;
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.update-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tag.new {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.tag.updated {
  background: linear-gradient(45deg, #f39c12, #e67e22);
}

/* Featured Authors Section */
.featured-authors {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.author-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.author-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.author-card .author-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.author-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.author-title {
  color: #667eea;
  font-weight: bold;
  margin-bottom: 1rem;
}

.author-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.author-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.author-stats .stat {
  text-align: center;
}

.author-stats .number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
}

.author-stats .label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .guides-hero .hero-stats {
    gap: 1.5rem;
  }

  .categories-grid,
  .tutorials-grid,
  .tips-masonry,
  .achievements-grid,
  .difficulty-grid,
  .community-guides-grid,
  .authors-grid {
    grid-template-columns: 1fr;
  }

  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .strategy-tabs {
    flex-direction: column;
    align-items: center;
  }

  .updates-timeline::before {
    left: 30px;
  }

  .timeline-date {
    width: 60px;
    padding: 0.8rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .achievement-categories {
    flex-direction: column;
    align-items: center;
  }
}
