/* Blog Page Specific Styles */

.blog-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffd700;
    animation: fadeInUp 0.8s ease-out;
}

.blog-hero p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.winner-stories {
    padding: 80px 0;
}

.winner-stories h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.story-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.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.5s ease;
}

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

.story-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    object-fit: cover;
}

.winner-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.location {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.winnings {
    color: #00ff7f;
    font-weight: 700;
    font-size: 16px;
    background: rgba(0, 255, 127, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.story-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
}

.story-content p::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 24px;
    color: #ffd700;
    font-family: serif;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 20, 147, 0.1);
    padding: 8px 12px;
    border-radius: 15px;
    color: #ff1493;
    font-size: 14px;
    font-weight: 600;
}

.game-played i {
    font-size: 16px;
}

.trending-games {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.trending-games h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffd700;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.trending-item {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.trending-item:hover {
    transform: translateY(-3px);
    border-color: #ff1493;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
}

.trending-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    object-fit: cover;
}

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

.trending-item .play-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.trending-item .play-btn:hover {
    transform: scale(1.05);
}

.submit-story {
    padding: 80px 0;
}

.submit-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 20, 147, 0.3);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.submit-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.submit-card p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.submit-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-btn, .join-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
}

.join-btn {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
}

.submit-btn:hover, .join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .trending-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trending-item {
        padding: 15px;
    }
    
    .submit-card {
        padding: 30px 20px;
    }
    
    .submit-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .submit-btn, .join-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 40px 0;
    }
    
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .winner-stories, .trending-games, .submit-story {
        padding: 40px 0;
    }
    
    .story-header img {
        width: 50px;
        height: 50px;
    }
    
    .winner-info h3 {
        font-size: 18px;
    }
    
    .submit-card h2 {
        font-size: 24px;
    }
}