.phone-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -100px; /* Closer to title */
}

/* Screen with iPhone 16 Pro Wallpaper */
/* Force White Screen */
.screen {
    width: 95px;
    height: 190px;
    background-color: white !important;  /* Ensures the screen is white */
    border-radius: 18px;
    position: absolute;
    top: 10px;
    left: 7.5px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}



.phone {
    width: 110px;  /* Adjusted for iPhone 16 Pro size */
    height: 220px;
    background: linear-gradient(145deg, #181818, #282828);
    border-radius: 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 3px solid #555; /* Metallic effect */
}

/* Screen */
.screen {
    width: 95px;
    height: 190px;
    background: linear-gradient(160deg, #0ea5e9, #8b5cf6);
    border-radius: 18px;
    position: absolute;
    top: 10px;
    left: 7.5px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

/* Dynamic Island (Top notch) */
.dynamic-island {
    width: 40px;
    height: 10px;
    background: black;
    border-radius: 20px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Side Buttons */
.side-buttons {
    width: 3px;
    height: 40px;
    background-color: #444;
    position: absolute;
    left: -5px;
    top: 50px;
    border-radius: 3px;
}
