/* Blog Page Specific Styles */

/* Winners Hero */
.winners-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #2d1b69 50%, #1a0b2b 100%);
    text-align: center;
}

.winners-hero h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff006e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #00ffa5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.winners-hero p:last-child {
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Story */
.featured-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
}

.featured-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #ffd700;
    max-width: 1000px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 2rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ffb703);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.story-header h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(135deg, #8338ec, #3a86ff);
}

.winner-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.win-date {
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    font-style: italic;
}

.win-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stat .label {
    color: #cccccc;
}

.stat .value {
    color: #ffd700;
    font-weight: 600;
}

/* Player Stories Grid */
.player-stories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.player-stories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ff006e;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.story-card .story-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #8338ec, #3a86ff);
}

.story-content {
    padding: 1.5rem;
}

.win-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.story-content h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.story-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

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

/* Trending Games */
.trending-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #2d1b69 100%);
}

.trending-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

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

.trending-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.trending-item.exclusive {
    border: 1px solid #ffd700;
}

.rank {
    font-size: 2rem;
    font-weight: 700;
    color: #ff006e;
    min-width: 40px;
    text-align: center;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.game-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, #8338ec, #3a86ff);
}

.details h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.details p {
    font-size: 0.9rem;
    color: #cccccc;
}

.popularity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff006e, #ffd700);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.popularity span {
    font-size: 0.8rem;
    color: #cccccc;
}

.play-btn {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
}

/* Share Your Story */
.share-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.share-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.share-card h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.share-card > p:first-of-type {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.share-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.disclaimer {
    color: #ff006e;
    font-weight: 600;
    margin-bottom: 0;
}

/* Weekly Highlights */
.weekly-highlights {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
}

.weekly-highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.highlight-card.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffb703);
}

.highlight-card.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #a0a0a0);
}

.highlight-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #a0522d);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.position {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.winner-info h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.winner-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.location {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .winners-hero h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .win-stats {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .game-info {
        justify-content: center;
    }
    
    .popularity {
        margin-right: 0;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .share-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .featured-card {
        padding: 1rem;
    }
    
    .story-header h2 {
        font-size: 1.5rem;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .trending-item {
        padding: 1rem;
    }
    
    .rank {
        font-size: 1.5rem;
    }
}