/*!
 * Font Awesome Free 6.4.0 - Custom Subset for PinMovies.com
 * Self-hosted and optimized for performance
 * Only includes the specific icons used across the website
 * Original size: 102KB → Custom size: ~3KB (97% smaller!)
 * 
 * Icons included:
 * - fire, check-circle, shield-alt, lock, infinity, dollar-sign, check
 * - ban, lightbulb, chevron-up, chevron-down, info-circle, clock
 * - circle-exclamation, circle-check, earth-americas, comment-dots
 * - hands-helping, exclamation-circle, times, thumbs-up, thumbs-down
 * - paper-plane, exclamation-triangle, history, rotate, arrow-right
 * - globe-americas, list-ul, external-link-alt
 */

/* Font Face - Solid icons only */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/webfonts/fa-solid-900.woff2") format("woff2"),
        url("/webfonts/fa-solid-900.ttf") format("truetype");
}

/* Base styles */
.fa,
.fas,
.fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

/* Icon definitions - Only the icons used in PinMovies.com */

/* VPN Section & Homepage Icons */
.fa-fire:before {
    content: "\f06d";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-check:before {
    content: "\f00c";
}

/* VPN Provider Icons */
.fa-shield-alt:before {
    content: "\f3ed";
}

.fa-lock:before {
    content: "\f023";
}

.fa-infinity:before {
    content: "\f534";
}

.fa-dollar-sign:before {
    content: "\24";
}

/* Unavailable Countries Icons */
.fa-ban:before {
    content: "\f05e";
}

.fa-lightbulb:before {
    content: "\f0eb";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

/* Hero Section Icons */
.fa-info-circle:before {
    content: "\f05a";
}

.fa-clock:before {
    content: "\f017";
}

.fa-circle-exclamation:before {
    content: "\f06a";
}

.fa-circle-check:before {
    content: "\f058";
}

.fa-earth-americas:before {
    content: "\f57d";
}

/* Feedback Widget Icons */
.fa-comment-dots:before {
    content: "\f4ad";
}

.fa-hands-helping:before {
    content: "\f4c4";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-times:before {
    content: "\f00d";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-paper-plane:before {
    content: "\f1d8";
}

/* Available Countries Icons */
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-history:before {
    content: "\f1da";
}

.fa-rotate:before {
    content: "\f2f1";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-globe-americas:before {
    content: "\f57d";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-external-link-alt:before {
    content: "\f35d";
}

/* Utility classes for sizing */
.fa-xs {
    font-size: .75em;
    line-height: .08333em;
    vertical-align: .125em;
}

.fa-sm {
    font-size: .875em;
    line-height: .07143em;
    vertical-align: .05357em;
}

.fa-lg {
    font-size: 1.25em;
    line-height: .05em;
    vertical-align: -.075em;
}

.fa-xl {
    font-size: 1.5em;
    line-height: .04167em;
    vertical-align: -.125em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

/* Utility classes for positioning */
.fa-fw {
    text-align: center;
    width: 1.25em;
}

/* Animation utilities */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility for fixed width icons */
.fa-border {
    border: solid 0.08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em;
}

/* Pull icons to left or right */
.fa-pull-left {
    float: left;
    margin-right: .3em;
}

.fa-pull-right {
    float: right;
    margin-left: .3em;
}