/* Custom styles that extend the theme */

/* Article content typography */
.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2, .article-content h3, .article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--blue);
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content table th,
.article-content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.article-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Game card image transition */
.game-card img {
    transition: transform 0.3s ease;
}

/* Pagination styling */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #dee2e6;
    color: var(--blue);
}

.pagination .page-item.active .page-link {
    background-color: var(--blue);
    border-color: var(--blue);
}

/* Widget styling */
.widget ul {
    padding-left: 0;
    list-style: none;
}

.widget_categories li,
.widget_archive li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.widget_categories li a,
.widget_archive li a {
    color: #4a4a4a;
    text-decoration: none;
}

.widget_categories li a:hover,
.widget_archive li a:hover {
    color: var(--blue);
}

/* Comment styling */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.comment-list .comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.comment-form textarea {
    min-height: 150px;
}

.comment-form .form-submit input {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.comment-form .form-submit input:hover {
    opacity: 0.9;
}

/* Download CTA card in sidebar */
.sidebar .card {
    position: sticky;
    top: 100px;
}

/* Brand ambassador images */
.ambassador-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--blue);
    transition: transform 0.3s;
}

.ambassador-img:hover {
    transform: scale(1.1);
}

/* Partner logos */
.partner-logo {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
}
