/* === CONTAINER === */
.container {
    max-width: 650px;
    width: 100%;
    background: #D9C7EB;
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* === PAGE CONTENT SECTIONS === */
.page-content {
    flex: 1;
}

.page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Give the footer more room on desktop; preserve the mobile panel width. */
@media (min-width: 1025px) {
    .container {
        max-width: 720px;
        min-width: 0;
    }
}
