/* Blog Page Specific Styles */

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.blog-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header h2 {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sidebar Enhancements */
.winner-stats {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
}

.winner-stats h3 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin: 0 20px 15px;
    letter-spacing: 0.5px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Featured Winner Section */
.featured-winner {
    margin-bottom: 60px;
}

.featured-card {
    background: linear-gradient(135deg, var(--surface-color), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate 8s linear infinite;
}

.featured-card > * {
    position: relative;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--background-dark);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.winner-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.winner-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--background-dark);
}

.winner-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.win-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.win-game {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.winner-story {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 25px;
}

.winner-story p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.story-details {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.story-details span {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-details i {
    color: var(--primary-color);
}

/* Winners Section */
.winners-section {
    margin-bottom: 60px;
}

.winners-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.winner-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.winner-card:nth-child(1) { animation-delay: 0.1s; }
.winner-card:nth-child(2) { animation-delay: 0.2s; }
.winner-card:nth-child(3) { animation-delay: 0.3s; }
.winner-card:nth-child(4) { animation-delay: 0.4s; }
.winner-card:nth-child(5) { animation-delay: 0.5s; }
.winner-card:nth-child(6) { animation-delay: 0.6s; }

.winner-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;
}

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

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.winner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.winner-card .winner-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.winner-card .winner-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.location {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.winner-card .win-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.winner-story {
    position: relative;
    z-index: 2;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-played img {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
}

.game-played span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.winner-story p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

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

.story-meta span {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.payout-time i {
    color: var(--success-color);
}

.payout-method i {
    color: var(--primary-color);
}

.date i {
    color: var(--text-muted);
}

/* Top Games Section */
.top-games-section {
    margin-bottom: 60px;
}

.top-games-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.top-game-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.top-game-card.exclusive {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.top-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    z-index: 3;
}

.top-game-card .game-image {
    height: 150px;
    background: linear-gradient(135deg, var(--background-darker), var(--surface-color));
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.top-game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-game-card .exclusive-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.top-game-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.top-game-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.game-stats span {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.game-stats i {
    color: var(--primary-color);
}

/* Share Story Section */
.share-story-section {
    margin-bottom: 60px;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--background-dark);
}

.cta-content p {
    font-size: 16px;
    color: var(--background-dark);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--background-dark);
}

.cta-feature i {
    font-size: 32px;
    margin-bottom: 5px;
}

.cta-feature span {
    font-weight: 600;
    font-size: 14px;
}

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

.cta-actions .btn {
    background: var(--background-dark);
    color: var(--primary-color);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

.cta-actions .btn:hover {
    background: var(--surface-color);
    transform: translateY(-2px);
}

/* Activity Feed Section */
.activity-feed-section {
    margin-bottom: 60px;
}

.activity-feed-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-feed {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.activity-item:hover::before {
    transform: scaleY(1);
}

.activity-item:hover {
    background: rgba(255, 215, 0, 0.05);
}

.activity-time {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
}

.activity-content {
    color: var(--text-secondary);
    flex: 1;
}

.activity-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.amount {
    color: var(--primary-color);
    font-weight: 700;
}

.game {
    color: var(--accent-color);
    font-weight: 500;
}

/* Animation Keyframes */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .winners-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 32px;
    }
    
    .blog-header h2 {
        font-size: 20px;
    }
    
    .featured-card {
        padding: 25px;
    }
    
    .winner-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .winner-info {
        justify-content: center;
        text-align: center;
    }
    
    .winner-details h3 {
        font-size: 24px;
    }
    
    .win-amount {
        font-size: 28px;
    }
    
    .winners-grid,
    .top-games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        gap: 25px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .winners-section h2,
    .top-games-section h2,
    .activity-feed-section h2 {
        font-size: 28px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .activity-time {
        min-width: auto;
        order: 2;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 26px;
    }
    
    .blog-header h2 {
        font-size: 18px;
    }
    
    .featured-card {
        padding: 20px;
    }
    
    .winner-avatar {
        width: 60px !important;
        height: 60px !important;
        font-size: 30px !important;
    }
    
    .winner-details h3 {
        font-size: 20px;
    }
    
    .win-amount {
        font-size: 24px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-feature i {
        font-size: 24px;
    }
    
    .winner-card,
    .top-game-card {
        padding: 20px;
    }
    
    .story-details,
    .story-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .winners-section h2,
    .top-games-section h2,
    .activity-feed-section h2 {
        font-size: 24px;
    }
}