/* Base Styles - Referenced by index.html but mainly for global defaults */
:root {
    /* 
       Note: Main theme variables are currently in index.html for easier prototyping 
       and immediate override. 
       This file contains reset and helper utility styles.
    */
    --bg-theme: #1a0f14;
    --text-theme: #fff0f5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background-color: var(--bg-theme);
    color: var(--text-theme);
}

/* Scrollbar styling for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(219, 112, 147, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(219, 112, 147, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
