/* Blog Page Styles */

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.2));
}

.hero-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.hero-highlight {
    font-size: 1.2rem;
    color: #50C878;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

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

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.story-card.highlight {
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.story-card.mega-win {
    border: 2px solid #7851A9;
    box-shadow: 0 0 20px rgba(120, 81, 169, 0.4);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.winner-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.winner-info {
    flex: 1;
}

.winner-info h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.3rem;
}

.winner-info span {
    color: #ccc;
    font-size: 0.9rem;
}

.win-amount {
    color: #50C878;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
}

.game-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B0000, #B22222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    animation: rotate 10s linear infinite;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: #f0f0f0;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.trending-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.trending-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
}

.trending-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(45deg, #333, #555);
}

.trending-info {
    flex: 1;
}

.trending-info h3 {
    color: #FFD700;
    margin-bottom: 0.25rem;
}

.trending-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Share Win Section */
.share-win {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.1), rgba(50, 205, 50, 0.1));
    text-align: center;
}

.share-content h2 {
    background: linear-gradient(45deg, #50C878, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.share-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trending-item img {
        width: 100px;
        height: 100px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .trending-item {
        padding: 1rem;
    }
    
    .games-filter {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(80, 200, 120, 0.5); }
    to { text-shadow: 0 0 20px rgba(80, 200, 120, 0.8); }
}

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