    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(6px); }
    }
    }

    html {
        scroll-behavior: smooth;
    }
    img {
        border-radius: 16px;
    }
    .img-bordered {
        box-shadow: 0 0 0 8px rgba(128, 128, 128, 0.2);  /* umbra/marginea gri */
        border-radius: 10px;
    }
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    .img-float {
        animation: float 3s ease-in-out infinite;
    }
    .simple-accordion-wrapper .accordion-section a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #555;
        font-weight: 400;
        transition: all .2s linear;
    }
    .wd-phone {
        border: 3px solid #1a1a1a !important;
        background: #1a1a1a;
        border-radius: 32px !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.08) !important;
    }
    @media (max-width: 768px) {
        .wd-phone { border-radius: 26px !important; border-width: 2px !important; }
    }
    /* disable hover animation on screenshots */
    .img-bordered { pointer-events: none; }
