/* Blog Page Specific Styles */
.main-content {
  margin-top: 80px;
  padding-bottom: 2rem;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1)),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  padding: 3rem 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Featured Winner */
.featured-winner {
  padding: 4rem 0;
  background: rgba(10, 10, 26, 0.3);
}

.winner-spotlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  position: relative;
}

.winner-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-gold);
  animation: pulse 2s infinite;
}

.winner-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-content {
  padding: 2rem;
  position: relative;
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.winner-content h2 {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 1rem;
  font-family: 'Orbitron', monospace;
}

.winner-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.winner-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.winner-info strong {
  display: block;
  color: var(--primary-purple);
  font-size: 1.1rem;
}

.winner-info span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.win-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-gold);
  font-family: 'Orbitron', monospace;
}

.game-played {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
}

/* Winner Stories */
.winner-stories {
  padding: 4rem 0;
}

.stories-grid {
  gap: 2rem;
}

.story-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.story-card:hover::before {
  transform: scaleX(1);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.story-header h3 {
  color: var(--text-gold);
  font-size: 1.2rem;
}

.win-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.win-badge.jackpot {
  background: var(--gradient-gold);
  animation: pulse 2s infinite;
}

.story-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.player-info strong {
  display: block;
  color: var(--primary-purple);
}

.player-info span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  opacity: 0.8;
}

.story-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Trending Games */
.trending-games {
  padding: 4rem 0;
  background: rgba(10, 10, 26, 0.3);
}

.trending-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.trending-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.trending-item img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.trending-info {
  flex: 1;
}

.trending-info h3 {
  color: var(--text-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.trending-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.trending-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.win-rate {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.trending-stats .btn {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Share Story Section */
.share-story {
  padding: 4rem 0;
  background: 
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

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

.share-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.share-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.share-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.benefit i {
  color: var(--primary-purple);
  font-size: 1.2rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Fixed Action Buttons */
.fixed-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-btn {
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
}

.register-btn {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.login-btn {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-blue);
}

.bonus-btn {
  background: var(--gradient-gold);
  color: white;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.fixed-btn:hover {
  transform: translateX(-5px) scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    margin-top: 100px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .featured-winner {
    padding: 2rem 0;
  }
  
  .winner-spotlight {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .winner-spotlight img {
    height: 250px;
  }
  
  .winner-content h2 {
    font-size: 2rem;
  }
  
  .win-amount {
    font-size: 1.5rem;
  }
  
  .winner-stories,
  .trending-games,
  .share-story {
    padding: 2rem 0;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .trending-list {
    grid-template-columns: 1fr;
  }
  
  .share-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .fixed-actions {
    right: 10px;
    gap: 8px;
  }
  
  .fixed-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .winner-content {
    padding: 1.5rem;
  }
  
  .winner-content h2 {
    font-size: 1.8rem;
  }
  
  .winner-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .story-content {
    padding: 1rem;
  }
  
  .story-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .trending-item {
    flex-direction: column;
    text-align: center;
  }
  
  .trending-stats {
    align-items: center;
  }
  
  .share-content h2 {
    font-size: 1.5rem;
  }
  
  .fixed-actions {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    top: auto;
  }
  
  .fixed-btn {
    padding: 8px 12px;
    font-size: 0.7rem;
    min-width: 80px;
  }
}