/* Blog Page Specific Styles */

.blog-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="85" cy="35" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="75" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="65" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: blogFloat 20s ease-in-out infinite;
}

@keyframes blogFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-10px) scale(1.1); }
    75% { transform: translateY(-5px) scale(1.05); }
}

.blog-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Featured Story */
.featured-story {
    margin-bottom: 60px;
}

.story-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.story-card.featured {
    border: 3px solid #ffd700;
    box-shadow: 0 20px 40px rgba(255,215,0,0.2);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.story-header {
    padding: 30px 30px 20px;
    position: relative;
}

.story-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.story-header h2,
.story-header h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 28px;
}

.story-meta {
    display: flex;
    gap: 20px;
    color: #b8c9e0;
    font-size: 14px;
    flex-wrap: wrap;
}

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

.story-content {
    padding: 0 30px 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.story-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.story-text {
    flex: 1;
}

.story-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e6ed;
}

.read-more-btn,
.guide-btn,
.newsletter-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover,
.guide-btn:hover,
.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Success Stories Grid */
.success-stories {
    margin-bottom: 60px;
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.stories-grid .story-card .story-content {
    flex-direction: column;
    gap: 20px;
}

.stories-grid .story-card .story-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
}

/* Game Guides */
.game-guides {
    margin-bottom: 60px;
}

.game-guides h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.guide-card {
    background: linear-gradient(145deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

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

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.3);
}

.guide-header {
    text-align: center;
    margin-bottom: 20px;
}

.guide-header i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}

.guide-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.guide-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.guide-content li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-content li i {
    color: #ffd700;
    font-size: 12px;
}

/* Casino News */
.casino-news {
    margin-bottom: 60px;
}

.casino-news h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.news-card {
    background: linear-gradient(145deg, #8e44ad 0%, #9b59b6 100%);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.news-category {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.news-header h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 20px;
}

.news-meta {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q50,10 90,50 Q50,90 10,50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    animation: newsletterPattern 25s ease-in-out infinite;
}

@keyframes newsletterPattern {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    min-width: 300px;
    outline: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 20px;
    }
    
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .story-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-image {
        width: 100%;
        height: 120px;
    }
    
    .success-stories h2,
    .game-guides h2,
    .casino-news h2 {
        font-size: 28px;
    }
    
    .stories-grid,
    .guides-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Story Card Animations */
@keyframes storyGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.4); }
}

.story-card.trending {
    animation: storyGlow 3s ease-in-out infinite;
}

.story-card.trending::after {
    content: '🔥 TRENDING';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}