/*
Theme Name: vip-yandex
Theme URI: https://z.ai
Author: George Hagi
Author URI: https://z.ai
 * Description: Amber ve beyaz tonlarında, ShadCN UI estetiğine sahip, görsel ve makale odaklı profesyonel bir haber ve içerik teması.
 * Version: 2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vip-yandex
Tags: amber, white, responsive, seo-friendly, news, blog, tailwind

All custom CSS is built with TailwindCSS and included in the header for performance.
*/

/* Basic Reset for SEO & Layout */
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Pagination styling */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav-links .page-numbers:hover {
    background-color: var(--color-amber-50);
    color: var(--color-amber-600);
    border-color: var(--color-amber-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-links .page-numbers.current {
    background-color: var(--color-amber-600) !important;
    color: #ffffff !important;
    border-color: var(--color-amber-600) !important;
    cursor: default;
    box-shadow: 0 4px 12px var(--color-amber-shadow);
}

.nav-links .page-numbers.dots {
    background-color: transparent;
    border-color: transparent;
    color: #9ca3af;
    box-shadow: none;
    cursor: default;
}

/* Content styling defaults (Let Tailwind Typography do the heavy lifting) */
.entry-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #374151;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #111827;
    line-height: 1.2;
}

.entry-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    color: #1f2937;
}

.entry-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.entry-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    color: #4b5563;
}

.entry-content h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    color: #6b7280;
}

.entry-content ul {
    list-style-type: disc !important;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem !important;
}

.entry-content ol {
    list-style-type: decimal !important;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem !important;
}

.entry-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
    color: #4b5563;
}

.entry-content a {
    color: var(--color-amber-600);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.entry-content a:hover {
    color: var(--color-amber-700);
}

.entry-content img {
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* CTA Banner Styles */
.sav-cta-banner {
    width: 100%;
    margin-bottom: 48px;
}

.sav-cta-link {
    display: block;
    text-decoration: none !important;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(90deg, var(--color-amber-500), var(--color-amber-600), var(--color-amber-500));
    background-size: 200% auto;
    animation: sav-cta-anim 3s linear infinite;
    box-shadow: 0 10px 25px var(--color-amber-shadow);
    transition: transform 0.3s ease;
}

.sav-cta-link:hover {
    transform: translateY(-3px);
}

.sav-cta-inner {
    background: #111827;
    border-radius: 18px;
    padding: 60px 20px;
    text-align: center;
}

.sav-cta-tag {
    display: inline-block;
    background: var(--color-amber-500);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.sav-cta-title {
    color: #fff !important;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    font-style: italic;
}

.sav-cta-title span {
    color: var(--color-amber-500);
    text-decoration: underline;
}

@keyframes sav-cta-anim {
    to {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .sav-cta-title {
        font-size: 24px;
    }

    .sav-cta-inner {
        padding: 40px 15px;
    }
}