    /* ZÁKLADNÍ NASTAVENÍ (Zůstává stejné) */
    #preloader-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999999;
        transition: opacity 0.6s ease-out;
    }

    .preloader-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* KAMERA (Zůstává robustní a solidní) */
    .sony-style-camera {
        width: 170px; 
        height: 110px;
        background: #e0e0e0;
        border-radius: 20px;
        position: relative;
        border: 4px solid #b0b0b0; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .lens-barrel {
        width: 80px;
        height: 80px;
        background: #f0f0f0;
        border-radius: 50%;
        position: absolute;
        top: 15px;
        left: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 3px solid #a0a0a0;
    }

    /* OBJEKTIV - Upraveno pro animaci clony */
    .lens-glass {
        width: 55px;
        height: 55px;
        background: #111; /* Hluboký vnitřek */
        border-radius: 50%;
        border: 5px solid #888;
        position: relative;
        overflow: hidden;
        box-shadow: inset 0 4px 10px rgba(0,0,0,0.5);
    }

    /* NOVÉ: ANIMACE PULZUJÍCÍ CLONY (IRIS) */
    .lens-iris {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient loga pro lamely clony */
        background: radial-gradient(
            circle,
            transparent 20%, /* Středový otvor clony */
            #506BFF 40%,     /* Modrá z loga */
            #975BF4 60%,     /* Fialová z loga */
            #F977CB 80%,     /* Růžová z loga */
            transparent 100%
        );
        animation: iris-pulse 2.5s ease-in-out infinite;
        opacity: 0.9;
        transform: scale(1);
    }

    .lens-reflector {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.1) 100%);
        z-index: 2; /* Musí být nad animací */
    }

    /* OSTATNÍ PRVKY KAMERY (Zůstávají stejné) */
    .camera-grip {
        width: 25px;
        height: 80px;
        background: #d0d0d0;
        border-radius: 12px 0 0 12px;
        position: absolute;
        left: 5px;
        top: 7px;
        border-right: 3px solid #b0b0b0;
    }

    .shutter-button {
        width: 20px;
        height: 12px;
        background: #b0b0b0;
        border-radius: 6px;
        position: absolute;
        top: -12px;
        right: 30px;
        border: 2px solid #999;
    }

    .rec-button-container {
        width: 15px;
        height: 15px;
        background: #b0b0b0;
        border-radius: 50%;
        position: absolute;
        top: -8px;
        right: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #999;
    }

    .rec-led {
        width: 7px;
        height: 7px;
        background: #F977CB; 
        border-radius: 50%;
        animation: led-blink 1s infinite;
        box-shadow: 0 0 10px #F977CB;
    }

    /* TEXT (Zůstává perfektní) */
    .brand-name {
        width: 170px;
        text-align: center;
        font-weight: 900;
        font-size: 28px;
        letter-spacing: 1px;
        background: linear-gradient(90deg, #506BFF 0%, #975BF4 50%, #F977CB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        font-family: sans-serif;
    }

    /* DEFINICE ANIMACÍ */
    @keyframes led-blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.1; }
    }

    /* NOVÁ: Animace pulzu pro clonu (iris) */
    @keyframes iris-pulse {
        0%, 100% { 
            transform: scale(1.1); /* Clona otevřená, otvor je menší */
            opacity: 0.7;
        }
        50% { 
            transform: scale(1.5); /* Clona se zavírá, otvor se zvětšuje */
            opacity: 1;
        }
    }


















































/* ████████████████████████████████████████ */
/* NOVÁ RESPONSIVE OPTIMALIZACE */
/* ████████████████████████████████████████ */


/* ====== 4K / ULTRA WIDE ====== */
@media (min-width: 2200px) {

    .preloader-wrapper { gap: 44px; }

    .sony-style-camera{
        width: 250px;
        height: 162px;
        border-radius: 28px;
    }

    .lens-barrel{
        width: 118px;
        height: 118px;
        top: 18px;
        left: 66px;
    }

    .lens-glass{
        width: 82px;
        height: 82px;
    }

    .camera-grip{
        width: 34px;
        height: 128px;
        left: 6px;
        top: 11px;
    }

    .brand-name{
        width: 250px;
        font-size: 40px;
    }
}


/* ====== LARGE DESKTOP ====== */
@media (max-width: 2199px) and (min-width: 1801px) {

    .preloader-wrapper { gap: 38px; }

    .sony-style-camera{
        width: 215px;
        height: 142px;
    }

    .lens-barrel{
        width: 102px;
        height: 102px;
        top: 17px;
        left: 56px;
    }

    .lens-glass{
        width: 72px;
        height: 72px;
    }

    .camera-grip{
        width: 31px;
        height: 112px;
        left: 6px;
        top: 10px;
    }

    .brand-name{
        width: 215px;
        font-size: 34px;
    }
}


/* ====== DESKTOP ====== */
@media (max-width: 1800px) and (min-width: 1501px) {

    .preloader-wrapper { gap: 34px; }

    .sony-style-camera{
        width: 190px;
        height: 124px;
    }

    .lens-barrel{
        width: 90px;
        height: 90px;
        top: 16px;
        left: 50px;
    }

    .lens-glass{
        width: 62px;
        height: 62px;
    }

    .camera-grip{
        width: 28px;
        height: 98px;
        left: 5px;
        top: 9px;
    }

    .brand-name{
        width: 190px;
        font-size: 30px;
    }
}


/* ====== NOTEBOOK ====== */
@media (max-width: 1500px) and (min-width: 1201px) {

    .preloader-wrapper { gap: 30px; }

    .sony-style-camera{
        width: 165px;
        height: 108px;
    }

    .lens-barrel{
        width: 78px;
        height: 78px;
        top: 15px;
        left: 44px;
    }

    .lens-glass{
        width: 54px;
        height: 54px;
    }

    .camera-grip{
        width: 25px;
        height: 86px;
        left: 5px;
        top: 8px;
    }

    .brand-name{
        width: 165px;
        font-size: 27px;
    }
}


/* ====== SMALL LAPTOP ====== */
@media (max-width: 1200px) and (min-width: 993px) {

    .preloader-wrapper { gap: 27px; }

    .sony-style-camera{
        width: 148px;
        height: 98px;
    }

    .lens-barrel{
        width: 70px;
        height: 70px;
        top: 14px;
        left: 39px;
    }

    .lens-glass{
        width: 48px;
        height: 48px;
    }

    .camera-grip{
        width: 23px;
        height: 78px;
        left: 4px;
        top: 8px;
    }

    .brand-name{
        width: 148px;
        font-size: 24px;
    }
}


/* ====== TABLET ====== */
@media (max-width: 992px) and (min-width: 769px) {

    .preloader-wrapper { gap: 24px; }

    .sony-style-camera{
        width: 132px;
        height: 88px;
    }

    .lens-barrel{
        width: 62px;
        height: 62px;
        top: 12px;
        left: 35px;
    }

    .lens-glass{
        width: 42px;
        height: 42px;
    }

    .camera-grip{
        width: 20px;
        height: 69px;
        left: 4px;
        top: 7px;
    }

    .brand-name{
        width: 132px;
        font-size: 22px;
    }
}


/* ====== MOBILE LARGE ====== */
@media (max-width: 768px) and (min-width: 577px) {

    .preloader-wrapper{
        gap: 22px;
        transform: scale(.95);
    }

    .sony-style-camera{
        width: 118px;
        height: 78px;
    }

    .lens-barrel{
        width: 56px;
        height: 56px;
        top: 11px;
        left: 30px;
    }

    .lens-glass{
        width: 38px;
        height: 38px;
    }

    .camera-grip{
        width: 18px;
        height: 61px;
        left: 4px;
        top: 6px;
    }

    .brand-name{
        width: 118px;
        font-size: 20px;
    }
}


/* ====== MOBILE ====== */
@media (max-width: 576px) and (min-width: 421px) {

    .preloader-wrapper{
        gap: 18px;
        transform: scale(.88);
    }

    .sony-style-camera{
        width: 104px;
        height: 70px;
    }

    .lens-barrel{
        width: 49px;
        height: 49px;
        top: 10px;
        left: 27px;
    }

    .lens-glass{
        width: 33px;
        height: 33px;
    }

    .camera-grip{
        width: 16px;
        height: 55px;
        left: 3px;
        top: 6px;
    }

    .brand-name{
        width: 104px;
        font-size: 18px;
    }
}


/* ====== SMALL MOBILE ====== */
@media (max-width: 420px) {

    .preloader-wrapper{
        gap: 16px;
        transform: scale(.78);
    }

    .sony-style-camera{
        width: 92px;
        height: 62px;
    }

    .lens-barrel{
        width: 43px;
        height: 43px;
        top: 9px;
        left: 24px;
    }

    .lens-glass{
        width: 29px;
        height: 29px;
    }

    .camera-grip{
        width: 14px;
        height: 49px;
        left: 3px;
        top: 5px;
    }

    .brand-name{
        width: 92px;
        font-size: 16px;
    }
}


/* ====== EXTRA SMALL ====== */
@media (max-width: 340px) {

    .preloader-wrapper{
        transform: scale(.68);
    }
}
