/* Blog Page Styles - SZGAMES Inspired */
body {
    background-color: #020617;
    background-image: radial-gradient(circle at top right, rgba(112, 0, 255, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(0, 242, 255, 0.05), transparent);
    color: #f8fafc;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.blog-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    padding: 60px 24px;
    border-bottom: 4px solid #00f2ff;
    margin-bottom: 40px;
    color: white;
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.blog-hero-icon {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid white;
    object-fit: cover;
}

.blog-hero-info {
    flex: 1;
}

.blog-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-hero-info h1 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 24px;
}

.btn-play-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: white !important;
    color: #7c3aed !important;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-play-now:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.blog-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.blog-article h2,
.blog-article h3 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    color: #00f2ff;
    margin: 30px 0 15px;
}

.blog-article p {
    margin-bottom: 20px;
    color: #94a3b8;
}

.blog-sidebar h2 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.sidebar-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: #00f2ff;
    transform: translateX(5px);
}

.sidebar-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-card-info h4 {
    font-size: 0.85rem;
    color: #f8fafc;
    margin: 0 0 2px;
}

.cta-box {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.cta-box h2 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: white;
}

.btn-cta {
    display: inline-block;
    padding: 12px 40px;
    background: white !important;
    color: #7c3aed !important;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .blog-main {
        grid-template-columns: 1fr;
    }

    .blog-hero-container {
        flex-direction: column;
        text-align: center;
    }
}