.phone-wrapper {
    transform: scale(0.9);
    transform-origin: top left;
}

/* Telefon-Gehäuse */
.phone {
    border: 1px solid #1a1a1a;
    overflow: hidden;
    position: relative;
    width: 400px;
    height: 870px;
    padding: 15px;
    background: linear-gradient(145deg, #222, #2a2a2a);
    border-radius: 36px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.6),
        inset 0 0 6px rgba(255,255,255,0.08);
}

/* Bildschirm */
.screen {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 22px;
    background: #111;
}

/* Notch */
.notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #111;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

/* Lautsprecher */
.speaker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #444;
    border-radius: 4px;
    z-index: 6;
}

.phone::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(120deg, rgba(255,255,255,0.12), transparent 40%);
    pointer-events: none;
}

