@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@100..900&display=swap');

:root {
    --color-primary: #e689f7;
    --color-primary-dark: #c76ee0;
    --color-primary-light: #f5d4fc;
    --color-accent: #a855f7;
    --color-primary-hover: #d77ef3;
    --color-primary-light-bg: #fdf2fd;
    --color-primary-darkest: #9333ea;
    
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --color-text: #1a1a1a;
    --color-text-dark: #1f2937;
    --color-text-medium: #4b5563;
    --color-text-light: #6b7280;
    --color-text-muted: #374151;

    --color-bg: #f8f9fa;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f3f4f6;
    
    --color-border: #e5e7eb;
    --color-border-light: #d1d5db;
    
    --color-error: #ef4444;
    --color-error-light: #fca5a5;
    
    --color-skeleton: #f0f0f0;
    --color-skeleton-light: #e0e0e0;
    
    --color-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

body,
button,
input,
textarea,
#search {
    font-family: var(--font-body);
}

body {
    text-decoration: none;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin: 0;
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
    display: block;
}

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

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 4px solid transparent;
    background-clip: content-box;
}

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

.skeleton {
    background: linear-gradient(90deg, var(--color-skeleton) 25%, var(--color-skeleton-light) 50%, var(--color-skeleton) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
