/*
Theme Name: Oyunuma Dokunma
Theme URI: https://oyunumadokunma.org
Author: Oyunuma Dokunma Ekibi
Author URI: https://oyunumadokunma.org
Description: Oyun yasaklarına karşı gamer haklarını savunan, bilimsel verilerle ebeveynleri bilgilendiren ve oyun sektörünü destekleyen topluluk platformu. React uygulamasından dönüştürülmüş modern WordPress teması.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oyunumadokunma
Tags: custom-menu, translation-ready, one-page, custom-colors
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;

    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-200: #ddd6fe;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --amber-500: #f59e0b;
    --orange-500: #f97316;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 25%, #fff7ed 50%, #f0f9ff 75%, #faf5ff 100%);
    background-attachment: fixed;
    color: var(--slate-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ===== GLASS EFFECTS ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ===== TYPOGRAPHY ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--sky-500), var(--violet-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose ul li {
    margin-bottom: 0.5rem;
}

.prose .lead {
    font-size: 1.125rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
}

/* ===== LAYOUT ===== */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--sky-500), var(--violet-500));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: white;
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.site-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-logo .logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--sky-500);
}

.nav-logo .logo-oyunuma {
    color: var(--sky-500);
}

.nav-logo .logo-dokunma {
    color: var(--violet-500);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--sky-600);
    background: rgba(14, 165, 233, 0.08);
}

.nav-link.active {
    color: var(--sky-600);
    background: rgba(14, 165, 233, 0.1);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-dropdown-trigger:hover {
    color: var(--sky-600);
    background: rgba(14, 165, 233, 0.08);
}

.nav-dropdown-trigger svg.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-trigger svg.chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--slate-600);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--sky-600);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    transition: background 0.2s;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--slate-700);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 40;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--sky-600);
}

.mobile-menu .mobile-dropdown-label {
    display: block;
    padding: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.03));
    padding: 5rem 0 0;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--sky-500);
    border-color: var(--sky-500);
    color: white;
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 1rem;
    height: 1rem;
    color: var(--slate-500);
}

.footer-social a:hover svg {
    color: white;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-500);
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--sky-600);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
    }
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(50px, -30px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: scale(1.2) translate(0, 0);
    }

    50% {
        transform: scale(1) translate(-30px, 50px);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.3) translate(40px, -40px);
    }
}

@keyframes particle {

    0%,
    100% {
        opacity: 0.2;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-100px) scale(1.5);
    }
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }

    to {
        max-height: 500px;
        opacity: 1;
    }
}

/* Animation Classes - triggered by Intersection Observer */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-rotate {
    animation: floatRotate 6s ease-in-out infinite;
}

/* ===== GLOW EFFECTS ===== */
.shadow-glow {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3), 0 0 60px rgba(139, 92, 246, 0.15);
}

.shadow-glass-lg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.gradient-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    left: -10%;
    top: 10%;
    animation: orbFloat1 15s ease-in-out infinite;
    pointer-events: none;
}

.gradient-orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    right: -5%;
    top: 30%;
    animation: orbFloat2 12s ease-in-out infinite;
    pointer-events: none;
}

.gradient-orb-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    left: 30%;
    bottom: 10%;
    animation: orbFloat3 18s ease-in-out infinite;
    pointer-events: none;
}

/* ===== FLOATING PARTICLES ===== */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: particle 8s ease-in-out infinite;
    pointer-events: none;
}

/* ===== TABS ===== */
.tab-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.375rem;
    border-radius: 1rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    color: var(--slate-600);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--sky-500), var(--violet-500));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    transition: background 0.2s ease;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.5);
}

.accordion-trigger span {
    font-weight: 600;
    color: var(--slate-800);
    padding-right: 2rem;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--slate-100);
    color: var(--slate-400);
    transition: all 0.2s ease;
}

.accordion-item.open .accordion-icon {
    background: var(--violet-100);
    color: var(--violet-600);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-500);
    line-height: 1.6;
    border-top: 1px solid rgba(241, 245, 249, 0.5);
    padding-top: 1rem;
}

/* ===== FORM STYLES ===== */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-input:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

textarea.form-input {
    resize: none;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 0.5rem;
}

/* ===== GRIDS ===== */
.grid-2 {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 100;
    animation: fadeInUp 0.3s ease;
    max-width: 400px;
}

.toast.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.toast.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--slate-300);
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: var(--sky-500);
    animation: scrollDown 2s ease-in-out infinite;
}

/* ===== SPINNER ===== */
.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE HELPERS ===== */
.hidden-mobile {
    display: none;
}

.hidden-desktop {
    display: block;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hidden-desktop {
        display: none;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--sky-400), var(--violet-400));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--sky-500), var(--violet-500));
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(14, 165, 233, 0.2);
    color: var(--slate-800);
}

/* ===== WP-SPECIFIC OVERRIDES ===== */
.wp-block-image {
    margin: 0;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}