@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --color-primary: #eb96e7;
    --color-primary-dark: #c68bdb;
    --color-primary-light: #fbe4de;
    --color-accent: #c68bdb;
    --color-primary-hover: #d88ad4;
    --color-primary-light-bg: #fbe4de;
    --color-primary-darkest: #a66cc4;
    
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, 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;
    scroll-padding-top: 50px;
}

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

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

button {
    cursor: pointer;
    transition: transform 0.1s;
}

button:hover {
    transform: scale(1.02);
}

button:active {
    transform: scale(0.95);
}

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

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

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; }
}