/* style.css */
:root {
    --bg-color: #f8f9fa;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents double scrolling */
    background-color: var(--bg-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

/* This container acts as a mask */
.iframe-window {
    position: relative;
    width: 90%;
    height: 85vh;
    max-width: 1280px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden; /* Hides the iframe overflow (Claude UI) */
    border: 1px solid rgba(0,0,0,0.05);
}

/* The magic crop */
.content-frame {
    position: absolute;
    /* Adjust these values if you still see Claude UI bars */
    top: -48px;      /* Crops the top Claude header */
    left: 0;
    width: 100%;
    height: calc(100% + 96px); /* Expands height to push footer out */
    border: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .iframe-window {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .content-frame {
        top: -42px; /* Slight adjustment for mobile UI scaling */
        height: calc(100% + 84px);
    }
}