﻿/* Font Awesome Icons - Simplified Version */
/* This is a placeholder for Font Awesome icons */

@font-face {
    font-family: 'FontAwesome';
    src: url('../font/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.fa, .fas {
    font-family: 'FontAwesome', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Common Icons */
.fa-home::before { content: '\f015'; }
.fa-user::before { content: '\f007'; }
.fa-lock::before { content: '\f023'; }
.fa-envelope::before { content: '\f0e0'; }
.fa-phone::before { content: '\f095'; }
.fa-star::before { content: '\f005'; }
.fa-heart::before { content: '\f004'; }
.fa-check::before { content: '\f00c'; }
.fa-times::before { content: '\f00d'; }
.fa-search::before { content: '\f002'; }
.fa-menu::before { content: '\f0c9'; }
.fa-arrow-right::before { content: '\f061'; }
.fa-arrow-left::before { content: '\f060'; }
.fa-play::before { content: '\f04b'; }
.fa-pause::before { content: '\f04c'; }
.fa-download::before { content: '\f019'; }
.fa-upload::before { content: '\f093'; }
.fa-shield::before { content: '\f132'; }
.fa-trophy::before { content: '\f091'; }
.fa-gift::before { content: '\f06b'; }
.fa-money::before { content: '\f0d6'; }
.fa-credit-card::before { content: '\f09d'; }
.fa-mobile::before { content: '\f10b'; }
.fa-desktop::before { content: '\f108'; }
.fa-tablet::before { content: '\f10a'; }

/* Gambling Specific Icons */
.fa-dice::before { content: '\f522'; }
.fa-clubs::before { content: '\f327'; }
.fa-diamonds::before { content: '\f219'; }
.fa-hearts::before { content: '\f21e'; }
.fa-spades::before { content: '\f2f5'; }

/* Social Icons */
.fa-facebook::before { content: '\f09a'; }
.fa-twitter::before { content: '\f099'; }
.fa-instagram::before { content: '\f16d'; }
.fa-youtube::before { content: '\f167'; }
.fa-telegram::before { content: '\f2c6'; }
.fa-whatsapp::before { content: '\f232'; }

/* Size Classes */
.fa-xs { font-size: 0.75em; }
.fa-sm { font-size: 0.875em; }
.fa-lg { font-size: 1.33em; }
.fa-xl { font-size: 1.5em; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }

/* Animation Classes */
.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); }
}