/* 
 * GŁÓWNY PLIK CSS - IMPORTOWANIE WSZYSTKICH MODUŁÓW
 * 
 * Kolejność importów jest ważna:
 * 1. reset.css - podstawowe resetowanie i zmienne
 * 2. layout.css - podstawowe klasy layoutu
 * 3. header.css - nagłówek i nawigacja
 * 4. sidebar.css - panel boczny
 * 5. hero.css - główna sekcja powitalna
 * 6. components.css - komponenty (przyciski, karty, statystyki)
 * 7. content-sections.css - sekcje treści (filmy, shortsy)
 * 8. vip-section.css - sekcja VIP
 * 9. footer.css - stopka
 * 10. animations.css - animacje i keyframes
 * 11. responsive.css - responsywność (na końcu, aby nadpisywać inne style)
 */

@import url('reset.css');
@import url('layout.css');
@import url('header.css');
@import url('sidebar.css');
@import url('hero.css');
@import url('components.css');
@import url('content-sections.css');
@import url('vip-section.css');
@import url('footer.css');
@import url('animations.css');
@import url('responsive.css'); 