#fpp-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fpp-inner {
    background-size: cover;
    background-position: center;
    width: 90%;
    max-width: 1200px;
    height: 800px;
    border-radius: 12px;
    position: relative;
    overflow: hidden; /* keep button inside */
}

/* Button pinned to bottom */
.fpp-button {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 36px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #ff6600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}
.fpp-button:hover {
    background: #e65c00;
}

/* Tablet */
@media (max-width: 1024px) {
    .fpp-inner {
        height: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fpp-inner {
        height: 400px;
    }
    .fpp-button {
        font-size: 18px;
        padding: 14px 28px;
        bottom: 15px;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .fpp-inner {
        height: 320px;
    }
    .fpp-button {
        font-size: 16px;
        padding: 12px 22px;
        bottom: 10px;
    }
}
