/* ============================================================
   MAIN.CSS - STYLE IMPORT ORCHESTRATION
   ============================================================ */

/* 1. Design Tokens & Variables */
@import url("variables.css");

/* 2. Base Reset & Global Styles */
@import url("base.css");

/* 3. Reusable Components */
@import url("components.css");

/* 4. Layout & Structural Components */
@import url("layout.css");

/* 5. Responsive Design */
@import url("responsive.css");

/* 6. Dailies card (perfil) */
@import url("dailies.css");

/* 7. Per-game lobby themes (Deadlock, LoL...) */
@import url("themes.css");

/* ============================================================
   PRINT STYLESHEET
   ============================================================ */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
}
