/* Blog Page Specific Styles */

.winner-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 50%, #2d1b3d 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: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.story-card.highlight {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

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

.story-content {
    padding: 25px;
}

.winner-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.winner-info h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0;
}

.win-amount {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.game-played {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.story-text {
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Trending Games */
.trending-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
}

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

.trending-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.trending-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: linear-gradient(45deg, #37b24d, #1c7ed6, #9c36b5);
}

.trending-info {
    padding: 15px;
}

.trending-info h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.trending-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ccc;
}

.trending-stats .hot {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.trending-stats .trending {
    background: linear-gradient(45deg, #37b24d, #1c7ed6);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.trending-stats .jackpot {
    background: linear-gradient(45deg, #9c36b5, #ff6b35);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

.trending-stats .new {
    background: linear-gradient(45deg, #1c7ed6, #37b24d);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Share Story Section */
.share-story {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
}

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

.share-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.share-btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    border-color: #ffd700;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.share-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Payout Proof Section */
.payout-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

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

.proof-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.proof-header i {
    font-size: 2rem;
    color: #ffd700;
}

.proof-header h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.2rem;
}

.proof-amount {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.proof-time {
    color: #37b24d;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.proof-game {
    color: #ccc;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trending-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .winner-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .story-card {
        margin: 0 10px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .win-amount {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .proof-amount {
        font-size: 1.8rem;
    }
    
    .share-content h2 {
        font-size: 1.5rem;
    }
}