/* App Review Theme Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.art-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}
.art-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.art-logo {
    font-size: 18px;
    font-weight: 700;
    color: #534AB7;
    text-decoration: none;
}
.art-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.art-nav a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}
.art-nav a:hover {
    color: #1a1a1a;
}

/* Main */
.art-main {
    min-height: 70vh;
    padding: 20px 0 40px;
}

/* Footer */
.art-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    text-align: center;
}
.art-footer p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}
.art-footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.art-footer a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

/* WP pagination */
.page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.page-numbers a,
.page-numbers span {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
}
.page-numbers .current {
    background: #534AB7;
    color: #fff;
}
.page-numbers a:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 640px) {
    .art-header__inner {
        flex-wrap: wrap;
        gap: 8px;
    }
    .art-nav ul {
        gap: 12px;
    }
}
