/* Blog Page Specific Styles */
body {
    padding-top: 100px;
}

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

.blog-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.blog-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Winner Stories */
.winner-stories {
    padding: 60px 0;
}

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

.story-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

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

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

.story-content {
    padding: 25px;
}

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

.winner-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

.win-amount {
    background: linear-gradient(45deg, #00ff88, #00d2ff);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

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

.game-tag {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Trending Games */
.trending-games {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 0, 0, 0.2));
}

.trending-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.trending-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 15px 25px;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.trending-item:hover {
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
    transform: scale(1.05);
}

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

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

/* Submit Win Section */
.submit-win {
    padding: 60px 0;
}

.submit-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #6c5ce7, #00d2ff);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 25px;
    opacity: 0.1;
    animation: gradientMove 6s ease infinite;
}

.submit-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.submit-card p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

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

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

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

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero h2 {
        font-size: 1.3rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card {
        margin-bottom: 20px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .winner-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .trending-list {
        gap: 15px;
    }
    
    .trending-item {
        padding: 10px 15px;
    }
    
    .submit-card {
        padding: 30px 20px;
    }
    
    .submit-card h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .submit-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-hero h2 {
        font-size: 1.1rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card img {
        height: 150px;
    }
    
    .story-content {
        padding: 15px;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .trending-item {
        padding: 8px 12px;
    }
    
    .submit-card {
        padding: 25px 15px;
    }
    
    .submit-card h2 {
        font-size: 1.5rem;
    }
}