/* Streaming Mode Styles */

/* Loading Screen */
#stream-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9500;
    display: none;
    align-items: center;
    justify-content: center;
}

#stream-loading-screen.active {
    display: flex;
}

.loading-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px) brightness(0.3);
    z-index: 1;
    pointer-events: none;
}

.loading-info {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    pointer-events: auto;
}

.loading-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #9d4edd;
}

.loading-status {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(157, 78, 221, 0.2);
    border-top: 5px solid #9d4edd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #9d4edd;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.loading-back-btn:hover {
    background: #9d4edd;
    transform: scale(1.05);
}

/* Stream Player Container */
#stream-player-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9000;
    display: none;
    cursor: default;
    transition: cursor 0.3s ease;
}

#stream-player-container.active {
    display: block;
}

/* Hide cursor when idle */
#stream-player-container.idle {
    cursor: none;
}

/* Player Top Bar */
.stream-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    z-index: 9100;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: auto;
}

#stream-player-container.idle .stream-top-bar {
    opacity: 0;
    pointer-events: none;
}

#stream-player-title {
    font-size: 18px;
    font-weight: 600;
    color: #9d4edd;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: opacity 0.4s ease;
}

/* Video Element */
#stream-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Subtitle Overlay (like player.html) */
#subtitle-overlay {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 50;
    text-shadow: 0 0 10px rgba(0,0,0,1), 0 0 5px black;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    padding: 0 12%;
    box-sizing: border-box;
    line-height: 1.4;
    display: none;
}

/* Skip Segment Button */
.skip-segment-btn {
    position: absolute;
    bottom: 180px;
    right: 40px;
    background: linear-gradient(135deg, #9d4edd, #5a189a);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 115;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.5);
    transition: all 0.3s ease;
    animation: skipPulse 2s ease-in-out infinite;
    pointer-events: auto;
}

.skip-segment-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(157, 78, 221, 0.7);
}

.skip-segment-btn .material-icons {
    font-size: 20px;
}

@keyframes skipPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(157, 78, 221, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(157, 78, 221, 0.8); }
}

/* Next Episode Button */
.next-episode-btn {
    position: absolute;
    bottom: 250px;
    right: 40px;
    background: linear-gradient(135deg, #9d4edd, #5a189a);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 115;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.5);
    transition: all 0.3s ease;
    animation: nextEpPulse 2s ease-in-out infinite;
    pointer-events: auto;
}

.next-episode-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(157, 78, 221, 0.7);
}

.next-episode-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    animation: none;
}

.next-episode-btn .material-icons {
    font-size: 24px;
}

.next-episode-btn .next-ep-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.next-episode-btn .next-ep-label {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-episode-btn .next-ep-title {
    font-size: 15px;
}

@keyframes nextEpPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(157, 78, 221, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(157, 78, 221, 0.8); }
}

.next-episode-btn.loading .material-icons {
    animation: spin 1s linear infinite;
}

/* Controls Overlay */
.stream-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px 45px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 9100;
    pointer-events: auto;
}

#stream-player-container.idle .stream-controls-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Progress Bar */
.stream-progress-wrapper {
    padding: 15px 0;
    cursor: pointer;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.stream-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    position: relative;
    transition: height 0.2s ease;
}

.stream-progress-wrapper:hover .stream-progress-container {
    height: 8px;
}

.stream-progress-bar {
    height: 100%;
    background: #9d4edd;
    width: 0%;
    border-radius: 3px;
    box-shadow: 0 0 15px #9d4edd;
    transition: box-shadow 0.2s ease;
}

.stream-progress-wrapper:hover .stream-progress-bar {
    box-shadow: 0 0 20px #9d4edd;
}

/* Seek Preview Tooltip */
.seek-preview-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #9d4edd;
    border-radius: 6px;
    padding: 6px 12px;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.seek-preview-time {
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: monospace;
}

/* Controls Row */
.stream-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.stream-left-controls,
.stream-right-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.stream-icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-icon-btn:hover {
    background: rgba(157, 78, 221, 0.25);
    color: #c77dff;
    transform: scale(1.1);
}

.stream-icon-btn .material-icons {
    font-size: 38px;
}

/* Time Display */
#stream-time-display {
    font-size: 16px;
    font-weight: 600;
    color: #ddd;
}

/* Volume Controls */
.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.4);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #9d4edd;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #9d4edd;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

/* Settings Menu */
.stream-menu-popup {
    position: absolute;
    bottom: 120px;
    right: 40px;
    background: rgba(10, 0, 20, 0.95);
    border: 1px solid rgba(157, 78, 221, 0.4);
    border-radius: 24px;
    width: 360px;
    max-height: 650px;
    display: flex;
    flex-direction: column;
    z-index: 9200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    backdrop-filter: blur(25px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stream-menu-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.stream-menu-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 22px;
    color: #c77dff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stream-scrollable-list {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
    padding: 10px 15px;
}

.stream-scrollable-list::-webkit-scrollbar {
    width: 5px;
}

.stream-scrollable-list::-webkit-scrollbar-thumb {
    background: #9d4edd;
    border-radius: 10px;
}

.provider-btn,
.quality-btn,
.sub-item {
    padding: 16px 22px;
    cursor: pointer;
    border-radius: 14px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.2s;
    margin-bottom: 6px;
    background: none;
    border: none;
    color: white;
    width: 100%;
    text-align: left;
    position: relative;
}

.provider-btn:hover,
.quality-btn:hover,
.sub-item:hover {
    background: rgba(157, 78, 221, 0.2);
}

.provider-btn.active,
.quality-btn.active {
    background: #9d4edd;
    color: white;
    font-weight: 600;
}

.sub-item.active {
    background: rgba(157, 78, 221, 0.3);
    border-left: 3px solid #9d4edd;
}

.sub-item.active .sub-check-icon {
    opacity: 1;
}

.sub-check-icon {
    opacity: 0;
    color: #9d4edd;
    font-size: 20px;
    margin-left: auto;
    transition: opacity 0.2s;
}

.sub-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.sub-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sub-title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sub-downloads {
    font-size: 12px;
    color: rgba(157, 78, 221, 0.8);
}

.sub-hi-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.sub-provider-badge {
    background: rgba(157, 78, 221, 0.3);
    color: #c77dff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(157, 78, 221, 0.5);
}

.sub-lang-header {
    padding: 12px 22px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #9d4edd;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    margin-bottom: 6px;
}

.sub-search-box {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.sub-search-input {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.sub-search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #9d4edd;
}

.sub-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.no-subs {
    padding: 30px;
    text-align: center;
    color: #666;
}

/* Settings Modal */
.settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.settings-modal.active {
    display: flex;
}

.settings-modal-content {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.settings-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.settings-modal-close:hover {
    background: rgba(157, 78, 221, 0.2);
}

.settings-modal h2 {
    color: #9d4edd;
    margin-bottom: 30px;
    font-size: 28px;
}

.settings-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-option:last-child {
    border-bottom: none;
}

.settings-option-label {
    font-size: 18px;
    color: white;
}

.settings-option-description {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #9d4edd;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Settings Modal */
.settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.settings-modal.active {
    display: flex;
    opacity: 1;
}

.settings-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.settings-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.settings-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.settings-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    transform: rotate(90deg);
}

.settings-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.settings-option:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.settings-option-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.settings-option-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-slider:hover {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}


/* Subtitle Settings */
.stream-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.subtitle-setting {
    padding: 15px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subtitle-setting label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.subtitle-slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.subtitle-slider-container input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.subtitle-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #9d4edd;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.subtitle-slider-container input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #9d4edd;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.subtitle-slider-container span {
    min-width: 50px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #9d4edd;
}

/* Cast Device Selection Modal */
.cast-device-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cast-device-modal-content {
    background: #1a1a2e;
    border: 2px solid #9d4edd;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cast-device-modal-content h2 {
    color: #9d4edd;
    margin: 0 0 20px 0;
    font-size: 24px;
    text-align: center;
}

.cast-device-list {
    margin-bottom: 20px;
}

.cast-loading {
    text-align: center;
    color: #ccc;
    padding: 20px;
    font-size: 16px;
}

.cast-device-item {
    background: rgba(157, 78, 221, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.cast-device-item:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9d4edd;
    transform: translateX(5px);
}

.cast-device-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cast-device-host {
    color: #999;
    font-size: 14px;
    font-family: monospace;
}

.cast-cancel-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #666;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cast-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #999;
}

.cast-device-modal-content h3 {
    color: #9d4edd;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.cast-subtitle-list {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.cast-subtitle-item {
    background: rgba(157, 78, 221, 0.1);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 16px;
}

.cast-subtitle-item:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9d4edd;
}

.cast-subtitle-item.selected {
    background: rgba(157, 78, 221, 0.3);
    border-color: #9d4edd;
}

.cast-continue-btn {
    width: 100%;
    background: #9d4edd;
    border: 2px solid #9d4edd;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.cast-continue-btn:hover {
    background: #7b2cbf;
    border-color: #7b2cbf;
}

.cast-skip-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #666;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.cast-skip-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #999;
}
