/* style.css */
/* iPhone Frame */
.iphone-frame {
    width: 393px;
    height: 852px;
    background: white;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: 12px solid #1a1a1a;
}

/* Status Bar */
.status-bar {
    height: 44px;
    background: black;
    position: relative;
    z-index: 100;
}

.status-bar::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: black;
    border-radius: 20px;
}

/* Navigation Bar */
.nav-bar {
    height: 84px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 20px;
}

.nav-bar::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: #000;
    border-radius: 3px;
}

/* Iframe Styles */
iframe {
    width: 100%;
    height: calc(100% - 128px);
    border: none;
}

/* Common Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}