body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden; /* Împiedică scroll-ul aiurea pe mobil */
}

#container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#flipbook {
    position: absolute; /* Schimbat din static/relative în absolute */
    transition: none;   /* Dezactivăm tranzițiile CSS în timpul resize-ului pentru fluiditate */
    margin: 0 !important;
}
/* Stil pentru pagini - folosim contain pentru a nu tăia nimic */
#flipbook .page {
    background-color: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.controls {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}
.controls button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.controls button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
