/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles */

/* Blazor error UI - positioning only, colors in app.css */
#blazor-error-ui[b-psikfwdjig] {
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-psikfwdjig] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu.razor.css - Not used, MainLayout uses RadzenPanelMenu */
/* This file kept empty for future use if NavMenu.razor is needed */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-tt4ysxc4ap],
.components-reconnect-repeated-attempt-visible[b-tt4ysxc4ap],
.components-reconnect-failed-visible[b-tt4ysxc4ap],
.components-pause-visible[b-tt4ysxc4ap],
.components-resume-failed-visible[b-tt4ysxc4ap],
.components-rejoining-animation[b-tt4ysxc4ap] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-retrying[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-failed[b-tt4ysxc4ap],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-tt4ysxc4ap] {
    display: block;
}


#components-reconnect-modal[b-tt4ysxc4ap] {
    background-color: #1a1a2e;
    color: #ffffff;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-tt4ysxc4ap 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-tt4ysxc4ap 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-tt4ysxc4ap 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-tt4ysxc4ap]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-tt4ysxc4ap 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-tt4ysxc4ap {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-tt4ysxc4ap {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-tt4ysxc4ap {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-tt4ysxc4ap] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-tt4ysxc4ap] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-tt4ysxc4ap] {
    border: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    #components-reconnect-modal button:hover[b-tt4ysxc4ap] {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    #components-reconnect-modal button:active[b-tt4ysxc4ap] {
        transform: translateY(0);
    }

.components-rejoining-animation[b-tt4ysxc4ap] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-tt4ysxc4ap] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-tt4ysxc4ap 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-tt4ysxc4ap] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-tt4ysxc4ap {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Shared/HolographicCard/HolographicCard.razor.rz.scp.css */
/* === HOLOGRAPHIC CARD WRAPPER === */
.hc-wrapper[b-e11r5dsj0q] {
    perspective: 600px;
    transform: translate3d(0, 0, 0.1px);
    position: relative;
    width: 100%;
    height: 100%;
}

/* Glow effect behind card */
.hc-wrapper[b-e11r5dsj0q]::before {
    content: '';
    position: absolute;
    inset: -15px;
    background:
        radial-gradient(circle at 50% 50%, hsl(238, 96%, 63%) 1%, transparent 76%),
        conic-gradient(from 124deg at 50% 50%,
            hsl(238, 96%, 63%) 0%,
            hsl(4, 100%, 68%) 40%,
            hsl(4, 100%, 68%) 60%,
            hsl(238, 96%, 63%) 100%);
    border-radius: inherit;
    transition: all 0.6s ease;
    filter: contrast(1.5) saturate(1.5) blur(40px);
    transform: scale(0.85);
    opacity: 0.3;
    z-index: -1;
}

.hc-wrapper.active[b-e11r5dsj0q]::before {
    filter: contrast(1) saturate(1) blur(40px);
    transform: scale(0.95);
    opacity: 0.6;
}

/* === MAIN CARD === */
.hc-card[b-e11r5dsj0q] {
    border-radius: 12px;
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(farthest-side circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
            hsla(266, 100%, 90%, 0.15) 4%,
            hsla(266, 0%, 60%, 0) 100%),
        radial-gradient(35% 52% at 55% 20%, hsl(187, 47%, 83%) 0%, transparent 100%),
        radial-gradient(100% 100% at 50% 50%, hsl(238, 96%, 63%) 1%, transparent 76%),
        conic-gradient(from 124deg at 50% 50%,
            hsl(238, 96%, 63%) 0%,
            hsl(4, 100%, 68%) 40%,
            hsl(4, 100%, 68%) 60%,
            hsl(238, 96%, 63%) 100%);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 1s ease;
}

.hc-card.active[b-e11r5dsj0q] {
    transition: transform 0.1s ease;
}

.hc-card *[b-e11r5dsj0q] {
    transform-style: preserve-3d;
}

/* === INNER CARD (dark background) === */
.hc-inside[b-e11r5dsj0q] {
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(145deg, hsl(255, 44%, 21%) 0%, hsl(220, 14%, 20%) 100%);
    transform: translateZ(0.1px);
    overflow: hidden;
}

/* === SHINE EFFECT === */
.hc-shine[b-e11r5dsj0q] {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg,
            hsl(238, 96%, 69%) calc(5% * 1),
            hsl(4, 100%, 69%) calc(5% * 2),
            hsl(187, 47%, 76%) calc(5% * 3),
            hsl(238, 96%, 74%) calc(5% * 4),
            hsl(4, 100%, 73%) calc(5% * 5),
            hsl(187, 47%, 73%) calc(5% * 6),
            hsl(238, 96%, 69%) calc(5% * 7)),
        repeating-linear-gradient(-45deg,
            hsl(255, 44%, 15%) 0%,
            hsl(220, 10%, 40%) 3.8%,
            hsl(220, 29%, 50%) 4.5%,
            hsl(220, 10%, 40%) 5.2%,
            hsl(255, 44%, 15%) 10%,
            hsl(255, 44%, 15%) 12%);
    background-position: 0 var(--background-y, 50%), var(--background-x, 50%) var(--background-y, 50%);
    background-size: 500% 500%, 300% 300%;
    background-blend-mode: color-dodge;
    filter: brightness(0.5) contrast(1.2) saturate(0.8);
    opacity: 0.4;
    mix-blend-mode: color-dodge;
}

/* === GLARE EFFECT === */
.hc-glare[b-e11r5dsj0q] {
    position: absolute;
    inset: 0;
    z-index: 11;
    pointer-events: none;
    background: radial-gradient(
        farthest-corner circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
        hsla(0, 0%, 100%, 0.6) 10%,
        hsla(0, 0%, 100%, 0) 80%);
    mix-blend-mode: overlay;
    opacity: var(--pointer-opacity, 0.5);
}

/* === CONTENT WRAPPER === */
.hc-content-wrapper[b-e11r5dsj0q] {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px);
}

/* === CLIP CARD STYLING (::deep for ChildContent) === */
[b-e11r5dsj0q] .clip-card-content {
    padding: 0;
    height: 100%;
    position: relative;
}

[b-e11r5dsj0q] .clip-thumbnail-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

[b-e11r5dsj0q] .clip-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

[b-e11r5dsj0q] .clip-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[b-e11r5dsj0q] .clip-card-content:hover .clip-play-overlay {
    background: rgba(255, 255, 255, 0.95);
    width: 80px;
    height: 80px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

[b-e11r5dsj0q] .clip-play-icon {
    font-size: 48px;
    color: white;
    transition: color 0.3s ease;
}

[b-e11r5dsj0q] .clip-card-content:hover .clip-play-icon {
    color: #5056FB;
}

[b-e11r5dsj0q] .clip-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

[b-e11r5dsj0q] .clip-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 100px);
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
