/* ==================== Kapsul Live Styles ==================== */

/* Shows Page */
.shows-page {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.shows-header {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.shows-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.shows-header .btn {
    flex-shrink: 0;
}

/* Shows Empty State */
.shows-page .empty-state {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 48px 24px;
    text-align: center;
}

.shows-page .empty-state svg {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.shows-page .empty-state h2 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.shows-page .empty-state p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.shows-page .empty-state .btn {
    margin-top: 8px;
}

/* Show Card - Style avec cadre comme kapsul-card--featured */
.show-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.show-card__cover {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: 10px;
    background: var(--white);
    border: 2px solid var(--black);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.show-card__cover svg {
    width: 28px;
    height: 28px;
    color: var(--black);
    opacity: 0.5;
}

.show-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-card__description {
    font-size: 13px;
    color: var(--black);
    opacity: 0.7;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--black);
    opacity: 0.6;
}

.show-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.show-card__meta svg {
    width: 14px;
    height: 14px;
}

/* Show Create/Edit Form */
.show-form {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: var(--yellow);
    min-height: 100vh;
}

.show-form .page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.show-form .page-header .btn-back {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--black);
}

.show-form .page-header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.show-form__cover-upload {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed var(--black);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.show-form__cover-upload:hover {
    border-style: solid;
}

.show-form__cover-upload img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-form__cover-upload svg {
    width: 48px;
    height: 48px;
    color: var(--black);
    opacity: 0.5;
    margin-bottom: 8px;
}

.show-form__cover-upload span {
    color: var(--black);
    opacity: 0.7;
    font-size: 14px;
}

/* Form Elements */
.show-form .form-group {
    margin-bottom: 20px;
}

.show-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.show-form .form-group input[type="text"],
.show-form .form-group input[type="number"],
.show-form .form-group input[type="datetime-local"],
.show-form .form-group textarea,
.show-form .form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 12px;
    color: var(--black);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.show-form .form-group input:focus,
.show-form .form-group textarea:focus,
.show-form .form-group select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.show-form .form-group input::placeholder,
.show-form .form-group textarea::placeholder {
    color: var(--gray-dark);
}

.show-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.show-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.show-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.show-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--black);
}

.show-form .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--black);
    cursor: pointer;
}

.show-form .btn--full {
    width: 100%;
    margin-top: 12px;
    background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--black);
}

.show-form .btn--full:hover {
    background: transparent;
    color: var(--black);
}

/* Show Detail Page */
.show-detail-page {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: var(--yellow);
    min-height: 100vh;
}

.show-detail__header {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.show-detail__cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    background: var(--gray);
    margin-bottom: 16px;
}

.show-detail__info h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.show-detail__host {
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
    margin: 0 0 12px 0;
}

.show-detail__description {
    font-size: 14px;
    color: var(--black);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.show-detail__stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--black);
    opacity: 0.6;
}

.show-detail__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.show-detail__section {
    margin-bottom: 24px;
}

.show-detail__section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px 0;
}

/* Episode Card */
.episode-card {
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 16px;
    margin-bottom: 12px;
}

.episode-card--live {
    border: 2px solid var(--danger);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--danger); }
    50% { border-color: rgba(239, 68, 68, 0.5); }
}

.episode-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.episode-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.episode-card__status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.episode-card__status--live {
    background: var(--danger);
    color: white;
    animation: pulse 1.5s infinite;
}

.episode-card__status--confirmed {
    background: var(--success);
    color: white;
}

.episode-card__status--pending {
    background: var(--warning);
    color: black;
}

.episode-card__status--draft {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.episode-card__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 12px;
}

.episode-card__guests {
    display: flex;
    align-items: center;
    gap: 8px;
}

.episode-card__guests-avatars {
    display: flex;
}

.episode-card__guests-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
    margin-left: -8px;
}

.episode-card__guests-avatars img:first-child {
    margin-left: 0;
}

.episode-card__guests-count {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Live Studio */
.live-studio {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    background: #000;
    overflow: hidden;
}

.live-studio__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #111;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
}

.live-studio__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-studio__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #ef4444;
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Host controls in header */
.live-studio__host-controls {
    display: flex;
    gap: 8px;
}

.host-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.host-btn svg {
    width: 16px;
    height: 16px;
}

.host-btn--end {
    background: #ef4444;
    color: white;
}

.host-btn--end:hover {
    background: #dc2626;
}

.host-btn--leave {
    background: #333;
    color: #fff;
}

.host-btn--leave:hover {
    background: #444;
}

.live-indicator__dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-studio__listeners {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #888;
}

.live-studio__listeners svg {
    width: 16px;
    height: 16px;
}

/* Participants Grid */
.live-studio__participants {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    padding: 20px;
    overflow-y: auto;
    align-content: start;
}

.participant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    position: relative;
}

.participant-card--speaking {
    border-color: #eab308;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.participant-card--muted {
    opacity: 0.6;
}

.participant-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #222;
    margin-bottom: 12px;
}

.participant-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.participant-card__role {
    font-size: 11px;
    color: #eab308;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participant-card__muted {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participant-card__muted svg {
    width: 12px;
    height: 12px;
    color: white;
}

/* Controls Bar */
.live-studio__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #111;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn--mute {
    background: #333;
    color: #fff;
}

.control-btn--mute.active {
    background: #ef4444;
    color: white;
}

.control-btn--record {
    background: #333;
    color: #fff;
}

.control-btn--record.active {
    background: #ef4444;
    color: white;
    animation: pulse 1.5s infinite;
}

.control-btn--end {
    background: #ef4444;
    color: white;
    width: 64px;
    height: 64px;
}

.control-btn--end:hover {
    background: #dc2626;
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer with reactions and stats */
.live-studio__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #111;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.live-studio__reactions {
    display: flex;
    gap: 8px;
}

.reaction-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    border: 1px solid #333;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.reaction-btn:hover {
    transform: scale(1.15);
    background: #333;
}

.reaction-btn:active {
    transform: scale(0.95);
}

.live-studio__stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.live-studio__stats svg {
    width: 16px;
    height: 16px;
}

/* Floating Reactions Animation */
.reaction-float {
    position: fixed;
    font-size: 32px;
    animation: float-up 2s ease-out forwards;
    pointer-events: none;
    z-index: 1000;
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) scale(1.5);
    }
}

/* Invitations Page */
.invitations-page {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.invitation-card {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-bottom: 12px;
}

.invitation-card__header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.invitation-card__cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.invitation-card__info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.invitation-card__info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.invitation-card__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.invitation-card__actions {
    display: flex;
    gap: 12px;
}

.invitation-card__actions .btn {
    flex: 1;
}

/* Upcoming Lives Section */
.upcoming-lives {
    margin-bottom: 32px;
}

.upcoming-lives__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.upcoming-lives__header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.upcoming-lives__scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.upcoming-live-card {
    min-width: 280px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 16px;
    cursor: pointer;
}

.upcoming-live-card--live {
    border: 2px solid var(--danger);
}

/* ==================== Live List Page ==================== */
.live-list-page {
    padding: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    min-height: 100vh;
    background: var(--black);
}

/* Live List Feed - matches home page feed */
.live-list__feed {
    display: flex;
    flex-direction: column;
}

.live-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.live-list__header h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.live-list__header h1 svg {
    color: #ef4444;
    width: 24px;
    height: 24px;
}

.live-list__header .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    background: #ef4444;
    color: white;
    border: none;
    cursor: pointer;
}

.live-list__header .btn:hover {
    background: #dc2626;
}

.live-list__header .btn svg {
    width: 16px;
    height: 16px;
}

.live-list__section {
    margin-bottom: 20px;
}

.live-list__section h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px 0;
}

.live-list__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #888;
    background: #111;
    border-radius: 16px;
    border: 1px solid #333;
}

.live-list__empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
    color: #ef4444;
}

.live-list__empty p {
    font-size: 15px;
    margin: 0;
    color: #888;
}

.live-list__empty .text-muted {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 8px;
}

/* Live Grid - Card style like home page */
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 500px) {
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.live-grid-card {
    display: block;
    text-decoration: none;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.live-grid-card:hover {
    transform: scale(1.02);
}

.live-grid-card__cover {
    position: relative;
    aspect-ratio: 1;
    background: #222;
}

.live-grid-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-grid-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    display: block;
    animation: pulse 1.5s infinite;
}

.live-grid-card__play {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.live-grid-card__play:hover {
    transform: scale(1.1);
}

.live-grid-card__play svg {
    width: 14px;
    height: 14px;
    color: var(--black);
    margin-left: 2px;
}

.live-grid-card__info {
    padding: 10px;
}

.live-grid-card__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-grid-card__author {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.live-grid-card__avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.live-grid-card__author span {
    font-size: 12px;
    color: var(--yellow);
}

.live-grid-card__stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #888;
}

.live-grid-card__stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-grid-card__stats svg {
    width: 12px;
    height: 12px;
}

/* Live Studio Loading */
.live-studio__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--black);
    color: var(--white);
    gap: 16px;
}

.live-studio__loading .loader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--gray);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.live-studio__loading p {
    font-size: 16px;
    color: var(--gray);
}

/* Episode Page - Yellow Theme */
.episode-page {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: var(--yellow);
    min-height: 100vh;
}

.episode-page__header {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.episode-page__cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    background: var(--gray);
    margin-bottom: 16px;
}

.episode-page__status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.episode-page__status--draft { background: var(--gray); color: var(--black); }
.episode-page__status--pending_guests { background: #f59e0b; color: var(--black); }
.episode-page__status--confirmed { background: #10b981; color: white; }
.episode-page__status--live { background: #ef4444; color: white; animation: pulse 1.5s infinite; }
.episode-page__status--processing { background: #6366f1; color: white; }
.episode-page__status--published { background: #10b981; color: white; }

.episode-page__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px 0;
}

.episode-page__show {
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
    margin: 0 0 8px 0;
}

.episode-page__host {
    font-size: 14px;
    color: var(--black);
    margin: 0 0 12px 0;
}

.episode-page__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 16px;
}

.episode-page__time svg {
    width: 18px;
    height: 18px;
}

.episode-page__guests {
    margin-bottom: 24px;
}

.episode-page__guests h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 12px 0;
}

.episode-page__guests-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episode-page__guests-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.episode-page__guest {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 12px;
}

.episode-page__guest-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.episode-page__guest-info {
    flex: 1;
}

.episode-page__guest-name {
    font-weight: 600;
    color: var(--black);
}

.episode-page__guest-status {
    font-size: 13px;
    color: var(--black);
    opacity: 0.7;
}

.episode-page__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.episode-page__actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid var(--black);
}

.episode-page__actions .btn--primary {
    background: var(--black);
    color: var(--yellow);
}

.episode-page__actions .btn--secondary {
    background: var(--white);
    color: var(--black);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .live-studio__participants {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }
    
    .participant-card {
        padding: 16px;
    }
    
    .participant-card__avatar {
        width: 60px;
        height: 60px;
    }
    
    .live-studio__controls {
        padding: 16px;
    }
    
    .control-btn {
        width: 48px;
        height: 48px;
    }
    
    .control-btn--end {
        width: 56px;
        height: 56px;
    }
    
    .live-studio__reactions {
        bottom: 100px;
        right: 12px;
    }
    
    .reaction-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ==================== Live Creation Modal ==================== */

.modal--large .modal__content {
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__content--scroll {
    max-height: 85vh;
    overflow-y: auto;
}

/* Form Groups */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group--cover {
    flex-shrink: 0;
}

.form-group--flex {
    flex: 1;
}

/* Cover Upload */
.live-cover-upload {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: var(--gray-light);
    border: 2px dashed var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
    background-size: cover;
    background-position: center;
}

.live-cover-upload:hover {
    border-color: var(--yellow);
    background-color: #f0f0f0;
}

.live-cover-upload svg {
    width: 24px;
    height: 24px;
    color: var(--gray-dark);
}

.live-cover-upload span {
    font-size: 11px;
    color: var(--gray-dark);
}

/* Tags */
.form-tags {
    display: flex;
    gap: 8px;
}

.form-tags .input {
    flex: 1;
    min-width: 0;
}

.input--small {
    padding: 10px 12px;
    font-size: 14px;
}

/* Toggles */
.form-toggles {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 16px 0;
    padding: 12px;
    background: var(--gray-light);
    border-radius: 12px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--black);
}

.toggle-label input {
    display: none;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: var(--gray);
    border-radius: 12px;
    position: relative;
    transition: all 0.2s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-label input:checked + .toggle-switch {
    background: var(--yellow);
}

.toggle-label input:checked + .toggle-switch::after {
    left: 22px;
}

.form-hint {
    font-size: 12px;
    color: var(--gray-dark);
    margin: 4px 0 8px;
}

/* Speaker Search */
.speaker-search {
    position: relative;
    margin-bottom: 8px;
}

.speaker-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--gray);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.speaker-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--black);
    font-size: 14px;
}

.speaker-search-item:hover {
    background: var(--gray-light);
}

.speaker-search-item:first-child {
    border-radius: 11px 11px 0 0;
}

.speaker-search-item:last-child {
    border-radius: 0 0 11px 11px;
}

.speaker-search-item:only-child {
    border-radius: 11px;
}

.speaker-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-light);
}

.speaker-search-empty {
    padding: 20px 16px;
    text-align: center;
    color: var(--gray-dark);
    font-size: 13px;
}

/* Invited Speakers Tags */
.invited-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.invited-speaker-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--black);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.invited-speaker-remove {
    background: none;
    border: none;
    color: var(--black);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    opacity: 0.6;
}

.invited-speaker-remove:hover {
    opacity: 1;
}

/* Spin animation for loader */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
