/* Blog Page Specific Styles */

/* Blog Hero */
.blog-hero {
    padding: 3rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero h2 {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Featured Story */
.featured-story {
    padding: 3rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.story-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card.featured {
    border: 2px solid var(--success-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(26, 26, 46, 0.8) 50%);
}

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

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

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

.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.player-details h3,
.player-details h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
}

.location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin: 0.25rem 0;
}

.verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.win-amount .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    display: block;
}

.win-amount .game {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-content {
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.story-image {
    text-align: center;
    margin-top: 1rem;
}

.story-image img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Player Stories */
.player-stories {
    padding: 4rem 0;
    background: rgba(15, 15, 26, 0.5);
}

.player-stories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.stories-grid .story-card {
    height: fit-content;
}

.stories-grid .story-header {
    flex-direction: row;
    align-items: center;
}

.stories-grid .player-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.win-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
}

.crazy-time {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.sweet-bonanza {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
}

.lightning {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.gates {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.teen-patti {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.mega-moolah {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stories-grid .story-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.stories-grid .story-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: normal;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.game-played img {
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
}

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

/* Share Win Section */
.share-win {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    text-align: center;
}

.share-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.reward-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reward-item {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.reward-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.reward-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reward-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.reward-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Tips Section */
.tips-section {
    padding: 4rem 0;
    background: rgba(15, 15, 26, 0.5);
}

.tips-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.tip-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    margin-bottom: 1rem;
}

.tip-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 2rem 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero h2 {
        font-size: 1.3rem;
    }
    
    .featured-story,
    .player-stories,
    .share-win,
    .tips-section {
        padding: 2rem 0;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .win-amount .amount {
        font-size: 1.5rem;
    }
    
    .reward-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .story-card {
        padding: 1rem;
    }
    
    .player-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .player-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reward-item,
    .tip-card {
        padding: 1.5rem;
    }
    
    .reward-item i,
    .tip-icon i {
        font-size: 2rem;
    }
}