/* 
  Showcase Page - Specific Isolation & Scaling styles 
*/

.showcase-isolation-container {
    width: 100%;
    background: #070707;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100dvh;
    /* Dynamic viewport height for Mobile */
    padding-bottom: 0px;
    /* Remove padding to let Scaler handle it */
    margin-top: 0;
}

/* The scaled iframe wrapper */
.showcase-scaler {
    width: 100vw;
    height: 100dvh;
    position: relative;
    transform: scale(0.8);
    transform-origin: bottom center;
    /* Scale from the bottom to keep alignment */
    border: none;
    z-index: 1;
}

/* Ensure no scrollbars on the iframe container */
iframe#showcase-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

/* Minimal Footer Styles */
.minimal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.minimal-footer p {
    margin: 0;
    opacity: 0.5;
}

/* Fix for the main site header in this context */
.site-header {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(15px);
    z-index: 9999 !important;
    /* Ensure it's above everything */
}

.mobile-menu-overlay {
    z-index: 10000 !important;
    /* Above header */
}