/* Blog Section Styles */
.game-blog {
    margin-top: 100px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced margin when game result is shown */
.game-blog.game-finished {
    margin-top: 10px;
}

.blog-content {
    background: var(--bg-secondary);
    padding: 14px 30px 0px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.blog-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--txt-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.blog-section {
    margin-bottom: 24px;
}

.blog-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--txt-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.blog-section p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--txt-primary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.blog-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--txt-primary);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.blog-list li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.color-hints {
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-primary);
    border-radius: 12px;
}
.hint-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.hint-item:last-child {
    margin-bottom: 0;
}

.hint-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.green-hint {
    background-color: #48B825;
}

.yellow-hint {
    background-color: #E9BA3A;
}

.gray-hint {
    background-color: #8E8E8E;
}

.hint-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--txt-primary);
    line-height: 1.5;
}

.blog-conclusion {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    /* color: var(--txt-primary); */
    line-height: 1.6;
    margin-top: 24px;
    padding: 16px;
    background: #F0F8EC;
    border-radius: 12px;
    border-left: 4px solid #48B825;
}

body.high-contrast .blog-conclusion {
    border-left: 4px solid #FF9000;
    background: #F8F3EC;
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {

    /* Mobile styles for blog section */
    .game-blog {
        margin-top: 24px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .blog-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .blog-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-section p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .blog-list li {
        font-size: 14px;
        padding-left: 18px;
    }

    .color-hints {
        padding: 14px;
    }

    .hint-item {
        gap: 10px;
        margin-bottom: 10px;
    }

    .hint-color {
        width: 20px;
        height: 20px;
    }

    .hint-text {
        font-size: 13px;
    }

    .blog-conclusion {
        font-size: 14px;
        padding: 14px;
        margin-top: 20px;
    }
}