/* Blog Page Specific Styles */

/* Blog Hero */
.blog-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero .hero-title {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.blog-hero .hero-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Winner Stories */
.winner-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #e91e63, #9c27b0);
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #ffd700, #e91e63);
}

.story-content {
    padding: 25px;
}

.winner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.winner-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
}

.win-amount {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.story-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-meta span {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trending Games */
.trending-games {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.trending-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trending-item:hover {
    transform: translateX(10px);
    border-color: rgba(233, 30, 99, 0.5);
    background: rgba(233, 30, 99, 0.1);
}

.trending-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.trending-item span {
    color: #ffffff;
    font-weight: 600;
}

/* Share Win */
.share-win {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.share-content h2 {
    color: #ffd700;
    margin-bottom: 40px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-card img {
        height: 180px;
    }
    
    .trending-list {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .winner-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .story-card {
        margin-bottom: 20px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-card img {
        height: 160px;
    }
    
    .trending-item {
        padding: 15px;
        gap: 10px;
    }
}