/* --- ÉPÍTKEZÉS / HAMAROSAN KÁRTYA STÍLUSOK --- */

/* Sárga-fekete csíkos sáv a kártya tetején */
.construction-stripe {
    height: 16px;
    max-width: 400px; /* Korlátozzuk a szélességét, hogy jól mutasson középen */
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #ffc107,
        #ffc107 10px,
        #212529 10px,
        #212529 20px
    );
}

/* Bólya lüktető animációja (Figyelemfelkeltő) */
.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 193, 7, 0));
    }

    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 193, 7, 0));
    }
}

/* Kis forgó fogaskerék az ikon mellett */
.spin-icon {
    display: inline-block;
    animation: spin 4s infinite linear;
}

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

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

/* Szöveg betűköze a címnek */
.tracking-wider {
    letter-spacing: 1px;
}