/* 갤럭시 프레임 */
.prototype-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.galaxy-frame {
    position: relative;
    width: 320px;
    height: 680px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
    border-radius: 42px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #3a3a3a,
        0 0 0 4px #1a1a1a,
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.galaxy-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 38px;
    border: 1px solid #3a3a3a;
    pointer-events: none;
}

.galaxy-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 36px;
    overflow: hidden;
}

.punch-hole {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--black);
    border-radius: 50%;
    z-index: var(--z-modal);
    box-shadow: 
        0 0 0 2px #1a1a1a,
        inset 0 0 4px rgba(50, 50, 80, 0.5);
}

.punch-hole::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #2a2a4a 0%, #1a1a2a 100%);
    border-radius: 50%;
}

/* 사이드 버튼 */
.volume-btn {
    position: absolute;
    left: -3px;
    top: 140px;
    width: 3px;
    height: 70px;
    background: linear-gradient(90deg, #2a2a2a, #3a3a3a, #2a2a2a);
    border-radius: 2px 0 0 2px;
}

.power-btn {
    position: absolute;
    right: -3px;
    top: 180px;
    width: 3px;
    height: 50px;
    background: linear-gradient(90deg, #2a2a2a, #3a3a3a, #2a2a2a);
    border-radius: 0 2px 2px 0;
}

/* 프레임 라벨 */
.frame-label {
    text-align: center;
    color: #888;
    margin-top: 20px;
    font-size: 14px;
}

/* 앱 컨테이너 */
.app-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
}

/* 페이지 iframe */
.page-frame {
    width: 100%;
    height: 100%;
    border: none;
}
