.findamate-video-call {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 20px;
    line-height: 1;
}

.findamate-video-call:hover { opacity: .65; }
.findamate-video-call:focus { outline: none; }

.findamate-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, .88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.findamate-video-panel {
    width: min(1000px, 96vw);
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

.findamate-video-header {
    min-height: 58px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #fff;
    background: #1b1b1b;
}

#findamate-video-status {
    font-size: 13px;
    opacity: .75;
}

.findamate-video-stage {
    position: relative;
    width: 100%;
    height: min(68vh, 650px);
    min-height: 360px;
    background: #050505;
}

.findamate-remote-video {
    position: absolute;
    inset: 0;
}

.findamate-local-video {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 220px;
    height: 155px;
    z-index: 3;
    overflow: hidden;
    border-radius: 12px;
    background: #222;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .4);
}

.findamate-video-waiting {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    padding: 30px;
    text-align: center;
}

.findamate-video-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: #1b1b1b;
}

.findamate-video-controls button,
.findamate-incoming-actions button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
}

.findamate-video-controls .findamate-hangup {
    background: #d93025;
    color: #fff;
}

.findamate-incoming-call {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000000;
}

.findamate-incoming-card {
    width: 310px;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .3);
    text-align: center;
}

.findamate-incoming-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.findamate-incoming-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

#findamate-answer-call {
    background: #198754;
    color: #fff;
}

#findamate-decline-call {
    background: #d93025;
    color: #fff;
}

@media (max-width: 575.98px) {
    .findamate-video-overlay { padding: 0; }
    .findamate-video-panel { width: 100vw; height: 100vh; border-radius: 0; }
    .findamate-video-stage { height: calc(100vh - 130px); }
    .findamate-local-video { width: 120px; height: 170px; right: 10px; bottom: 10px; }
    .findamate-incoming-call { left: 12px; right: 12px; bottom: 12px; }
    .findamate-incoming-card { width: auto; }
}
