/* ==FONT POPPINS === */
@font-face {
    font-family: 'Poppins';
    src: url('/panel/media-hub/fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Remote Container ===== */
.card {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 12px 8px;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(30,41,59,.85), rgba(15,23,42,.75));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.30);
}

/* ===== Remote List ===== */
.remote-list {
    column-width: 135px;
    column-gap: 8px;
    width: 100%;
    color: #ffffff;

    /* ====Fonts ===== */
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: bold; /* Disesuaikan ke 400 sesuai file Regular */
}
/* ===== Baris Remote ===== */
.remote-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2px;
    padding: 1px 0;
    line-height: 1.2;
    break-inside: avoid;

    /* MENINGGIKAN PHYSICAL HURUF/ANGKA (Tarik ke atas 120%) */
    transform: scaleY(1.3);
    transform-origin: center; /* Menjaga titik tengah tetap pas */
}
/* KUNCI LEBAR NOMOR */
.remote-row .num {
    width: 24px;
    flex: none;
    text-align: right;
    padding-right: 4px;
}

/* Link Teks Nama */
.remote-link {
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.remote-link:hover {
    color: #00e5ff;
}

/* ===== Saat Layar Lanskap / HP Miring ===== */
@media (min-width: 500px) {
    .remote-list {
        column-count: 4;
    }
}
/* ===== ANIMASI IKON WARNA-WARNI (BIRU - HIJAU - MERAH - KUNING) ===== */
@keyframes colorCycle {
    0%   { filter: brightness(0) saturate(100%) invert(70%) sepia(45%) saturate(1200%) hue-rotate(0deg); }   /* Biru Muda */
    25%  { filter: brightness(0) saturate(100%) invert(60%) sepia(85%) saturate(500%) hue-rotate(90deg); }   /* Hijau */
    50%  { filter: brightness(1) saturate(200%) invert(20%) sepia(100%) saturate(7500%) hue-rotate(345deg); }  /* Merah Menyala */
    75%  { filter: brightness(1) saturate(150%) invert(85%) sepia(95%) saturate(2500%) hue-rotate(150deg); }   /* Kuning Cerah */
    100% { filter: brightness(0) saturate(100%) invert(70%) sepia(45%) saturate(1200%) hue-rotate(360deg); }  /* Kembali ke Biru Muda */
}

.remote-link img {
    animation: colorCycle 20s infinite linear;
}

