/* Tệp điều phối (Hub) CSS - Tuân thủ nguyên tắc Modular */
@import url('css/variables.css');
@import url('css/typography.css');
@import url('css/layout.css');
@import url('css/components.css');
@import url('css/animations.css');

/* Reset cơ bản cho toàn hệ thống */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
