/**
 * Unit Sprite Sheet CSS
 * Dosya: /images/soldiers/icons/turk-soldiers.webp
 * 11 ikon (10 asker + kahraman), soldan sağa
 * Piksel bazlı pozisyon — JS ile dinamik enjekte edilir
 * (unit-sprites.js init() ile gerçek boyuta göre hesaplanır)
 */

/* Temel sprite sınıfı */
.unit-sprite {
    display: inline-block;
    background-image: url('/images/soldiers/icons/all-soldiers.webp');
    background-repeat: no-repeat;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}

/* Boyut varyantları */
.unit-sprite-20  { width: 20px;  height: 20px; }
.unit-sprite-24  { width: 24px;  height: 24px; }
.unit-sprite-28  { width: 28px;  height: 28px; }
.unit-sprite-32  { width: 32px;  height: 32px; }
.unit-sprite-40  { width: 40px;  height: 40px; }
.unit-sprite-48  { width: 48px;  height: 48px; }
.unit-sprite-64  { width: 64px;  height: 64px; }
