/*
Theme Name: Pecorelle Theme
Theme URI: https://thepornlinks.com/
Description: A high-performance, premium clone of ThePornLinks directory.
Version: 1.0.0
Author: Antigravity
Author URI: https://github.com/google-deepmind
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thepornlinks-clone
*/

/**
 * DESIGN SYSTEM & TOKENS
 */
/* All variables are now in css/variables.css */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

body {
    background: var(--ui-bg);
    color: #333;
    font-family: var(--font-body);
    line-height: 1.4;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* GLOBAL PREMIUM PAGINATION */
.archive-pagination {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.archive-pagination ul.page-numbers {
    display: flex;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px;
    align-items: center;
}

.archive-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    color: #475569;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.archive-pagination .page-numbers:hover:not(.current) {
    background: #f1f5f9;
    color: #ff4d6d;
    transform: translateY(-2px);
}

.archive-pagination li .page-numbers.current {
    background: #ff4d6d;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
}

.archive-pagination .page-numbers.prev, 
.archive-pagination .page-numbers.next {
    background: #0f172a;
    color: white;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.archive-pagination .page-numbers.prev:hover, 
.archive-pagination .page-numbers.next:hover {
    background: #ff4d6d;
}

.archive-pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    cursor: default;
}
