/* Mac Window Frame Styles */
.mac-window-frame {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mac-window-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.mac-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mac-dots span:nth-child(3) {
    background: #27c93f;
}

.mac-address-bar {
    flex: 1;
    background: #1a1a1a;
    padding: 6px 12px;
    border-radius: 6px;
    color: #888;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: monospace;
}

.mac-address-bar i {
    font-size: 14px;
}

.mac-window-frame .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.mac-window-frame .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}