body {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #c27c5b 0%, #a66649 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-20px); }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Payment page — selected option styling */
.option-radio:checked + label {
    border-color: #c27c5b;
    background-color: #fdf8f6;
}

.option-radio:checked + label .check-circle {
    background-color: #c27c5b;
    border-color: #c27c5b;
}

.option-radio:checked + label .check-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

/* FAQ open state — chevron rotation */
.faq-item.open .fa-chevron-down {
    transform: rotate(180deg);
}

/* Recording screen — glass panel + pulse */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recording-pulse {
    animation: recording-pulse 2s infinite;
}

@keyframes recording-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Ziggeo recorder — hide the built-in control-bar device controls (gear/
   settings + the camera/microphone status buttons). We supply our own
   external Camera/Microphone dropdowns, so these are redundant and confusing.
   Targeted by Ziggeo's stable `data-selector` hooks; we hide each button's
   wrapper container (via :has()) so no empty gap is left in the control bar.
   The Record/Upload buttons use different data-selectors and stay visible. */
#recorder-mount .ba-videorecorder-leftbutton-container:has([data-selector="record-button-icon-cog"]),
#recorder-mount .ba-videorecorder-lefticon-container:has([data-selector="record-button-icon-videocam"]),
#recorder-mount .ba-videorecorder-lefticon-container:has([data-selector="record-button-icon-mic"]) {
    display: none !important;
}
