/* FontAwesome 6.5.1 subset — only icons actually used (40 icons, ~5KB fonts) */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/fonts/fa-solid-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/fonts/fa-brands-subset.woff2") format("woff2");
}

.fa, .fas, .fa-solid,
.fab, .fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa, .fas, .fa-solid { font-family: "Font Awesome 6 Free"; font-weight: 900; }
.fab, .fa-brands    { font-family: "Font Awesome 6 Brands"; font-weight: 400; }

/* Solid */
.fa-address-card:before        { content: "\f2bb" }
.fa-angle-left:before          { content: "\f104" }
.fa-angle-right:before         { content: "\f105" }
.fa-calendar-alt:before,
.fa-calendar-days:before       { content: "\f073" }
.fa-check-circle:before,
.fa-circle-check:before        { content: "\f058" }
.fa-chevron-left:before        { content: "\f053" }
.fa-chevron-right:before       { content: "\f054" }
.fa-clock:before               { content: "\f017" }
.fa-coins:before               { content: "\f51e" }
.fa-comment-alt:before,
.fa-comment:before             { content: "\f075" }
.fa-comments:before            { content: "\f086" }
.fa-copy:before                { content: "\f0c5" }
.fa-envelope:before            { content: "\f0e0" }
.fa-exclamation-circle:before  { content: "\f06a" }
.fa-exclamation-triangle:before,
.fa-triangle-exclamation:before{ content: "\f071" }
.fa-eye:before                 { content: "\f06e" }
.fa-eye-slash:before           { content: "\f070" }
.fa-file-alt:before,
.fa-file-lines:before          { content: "\f15c" }
.fa-file-pen:before            { content: "\f31c" }
.fa-gamepad:before             { content: "\f11b" }
.fa-gift:before                { content: "\f06b" }
.fa-info-circle:before         { content: "\f05a" }
.fa-lock:before                { content: "\f023" }
.fa-phone-alt:before,
.fa-phone:before               { content: "\f095" }
.fa-play:before                { content: "\f04b" }
.fa-redo-alt:before,
.fa-arrow-rotate-right:before  { content: "\f01e" }
.fa-shield-alt:before,
.fa-shield-halved:before       { content: "\f3ed" }
.fa-star:before                { content: "\f005" }
.fa-sync-alt:before            { content: "\f2f1" }
.fa-times:before,
.fa-xmark:before               { content: "\f00d" }
.fa-times-circle:before,
.fa-circle-xmark:before        { content: "\f057" }
.fa-trash-alt:before,
.fa-trash-can:before           { content: "\f2ed" }
.fa-user:before,
.fa-user-alt:before            { content: "\f007" }
.fa-wallet:before              { content: "\f555" }
.fa-caret-down:before          { content: "\f0d7" }
.fa-caret-up:before            { content: "\f0d8" }
.fa-caret-right:before         { content: "\f0da" }

/* Brand */
.fa-facebook-messenger:before  { content: "\f39f" }
.fa-hotjar:before              { content: "\f3b1" }
.fa-skype:before               { content: "\f17e" }
.fa-telegram-plane:before,
.fa-telegram:before            { content: "\f2c6" }
.fa-whatsapp:before            { content: "\f232" }

/* Spinner animation (used by fa-spin classes if any) */
.fa-spin { animation: fa-spin 2s infinite linear; }
@keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
