/**
 * NETRAA — Tantra & Sound Resonance Stylesheet
 */
.bg-light-purple {
    background-color: rgba(74, 20, 140, 0.03);
}
.btn-warning {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}
.btn-warning:hover {
    background-color: var(--accent-saffron);
}
.btn-outline-purple {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}
.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: #fff;
}

.camera-fullscreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.camera-video-wrapper {
    position: relative;
    width: min(90vw, 480px);
    height: min(67.5vw, 360px);
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.camera-video-wrapper video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.camera-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
#tantra-circle {
    border: 3px dashed rgba(255,255,255,0.85);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.45);
}
.camera-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.camera-capture-btn {
    width: 65px; height: 65px;
    border: 3px solid #fff;
    border-radius: 50%;
}
.camera-close-btn {
    position: fixed; top: 16px; right: 16px;
    width: 42px; height: 42px;
}
.camera-status-bar {
    margin-top: 12px;
}
.rotate-slow {
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
