/* Single Post Styles */
.single-post-container {
    display: flex;
    gap: 30px;
}

.sidebar {
    flex-shrink: 0;
    position: sticky;
    top: 100px; /* Offset from header (70px) + 30px margin */
    height: calc(100vh - 120px);
}

.left-sidebar {
    width: 250px;
}

.right-sidebar {
    width: 300px;
}

.sidebar-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.popular-game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s;
    padding: 8px;
    border-radius: 8px;
}
.popular-game-item:hover {
    background-color: var(--surface-color);
}
.popular-game-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

.main-article {
    flex-grow: 1;
    min-width: 0;
}

.game-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.post-meta {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
}

.game-content {
    line-height: 1.7;
    margin-bottom: 30px;
}

.main-download-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}
.main-download-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.5);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }

.ads-widget {
    background: var(--surface-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.ads-widget p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive Single Post */
@media (max-width: 1200px) {
    .left-sidebar { display: none; }
}
@media (max-width: 992px) {
    .single-post-container { flex-direction: column; }
    .right-sidebar {
        position: static;
        height: auto;
        width: 100%;
        margin-top: 30px;
    }
}


/* ... (all your existing single-post.css styles) ... */

/* Single Post Ad Styles */
.ad-slot-horizontal, .ad-slot-center {
    margin: 35px auto;
    text-align: center;
}
/* ADD THIS to single-post.css */
.popular-game-item:hover span {
    color: var(--text-hover-color, var(--primary-color));
}