
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    background: #111;
    border-radius: 30px;
    padding: 12px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.phone-notch {
    width: 40%;
    /* height: 20px; */
    background: #111;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/19.5;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* .phone-home-indicator {
    width: 25%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 8px auto 0;
} */

.phone-mockup {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

@media (max-width: 767.98px) {
    .phone-mockup {
        max-width: 200px;
        border-radius: 25px;
    }
    .phone-screen {
        border-radius: 18px;
    }
}
  