/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Reset default browser margins and ensure full height */
html[b-4ow3nnew62], body[b-4ow3nnew62] {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh; /* Ensure full viewport height */
}

/* Ensure MudLayout takes full viewport height */
.mud-layout[b-4ow3nnew62] {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Responsive helpers */
.only-mobile[b-4ow3nnew62] {
    display: block;
}

@media (min-width: 960px) {
    .only-mobile[b-4ow3nnew62] {
        display: none !important;
    }
}

.only-desktop[b-4ow3nnew62] {
    display: none;
}

@media (min-width: 960px) {
    .only-desktop[b-4ow3nnew62] {
        display: block !important;
    }
}

/* Layout container */
.layout-container[b-4ow3nnew62] {
    display: flex;
    flex-direction: column; /* mobile default */
    flex-grow: 1; /* Take remaining space */
    padding-top: 4rem; /* Space for mobile header */
    padding-bottom: 4rem; /* Space for mobile bottom nav */
}

@media (min-width: 960px) {
    .layout-container[b-4ow3nnew62] {
        flex-direction: row;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 1rem;
        padding: 0;
        min-height: 100vh; /* Allow content to extend beyond viewport */
    }
}

/* Body column: Twitter-like fixed width */
.body-wrapper[b-4ow3nnew62] {
    width: 100%;
    max-width: 600px; /* Same as Twitter’s feed column */
    flex-grow: 1; /* Allow it to grow vertically */
}

@media (min-width: 960px) {
    .body-wrapper[b-4ow3nnew62] {
        flex-shrink: 0;
        flex-grow: 0;
        position: relative; /* Ensure it scrolls normally */
        z-index: 1; /* Keep it above fixed nav/news */
    }
}

/* Left nav + right news flex columns */
.left-nav[b-4ow3nnew62], .right-news[b-4ow3nnew62] {
    flex: 1; /* Take remaining space evenly */
    min-width: 0; /* Prevent overflow */
}

@media (min-width: 960px) {
    .left-nav[b-4ow3nnew62] {
        position: fixed; /* Fix to viewport */
        top: 0; /* Align to top of viewport */
        bottom: 0; /* Extend to bottom of viewport */
        left: calc((100% - 1200px) / 2); /* Align with layout-container */
        width: 300px; /* Fixed width to match layout proportions */
        border-right: 1px solid #808080; /* Gray line */
        z-index: 0; /* Behind body-wrapper */
        overflow-y: auto; /* Scroll if content overflows */
        padding-top: 1rem; /* Space for logo */
        padding-left: 1rem; /* Add padding to prevent logo cutoff */
        padding-right: 1rem; /* Consistent padding on right */
    }

    .desktop-logo[b-4ow3nnew62] {
        text-align: left; /* Left-aligned */
        padding: 0.25rem 0; /* Reduced padding */
        padding-bottom: 1rem; /* Reduced spacing below logo */
        position: sticky;
        top: 0;
        z-index: 1; /* Ensure logo stays above nav content */
        background-color: inherit; /* Match nav background */
        font-size: 1.75rem; /* Slightly larger for prominence */
        font-family: Arial, Helvetica, sans-serif; /* Default font stack */
        font-weight: bold; /* Bold for emphasis */
        color: #e91e63; /* Professional reddish-pink */
    }

    .right-news[b-4ow3nnew62] {
        position: fixed; /* Fix to viewport */
        top: 0; /* Align to top of viewport */
        bottom: 0; /* Extend to bottom of viewport */
        right: calc((100% - 1200px) / 2); /* Align with layout-container */
        width: 300px; /* Fixed width to match layout proportions */
        border-left: 1px solid #808080; /* Gray line */
        z-index: 0; /* Behind body-wrapper */
        overflow-y: auto; /* Scroll if content overflows */
    }

    /* Remove padding from layout-container to prevent main content expansion */
    .layout-container[b-4ow3nnew62] {
        padding-left: 0;
        padding-right: 0;
    }
}

.mobile-logo[b-4ow3nnew62] {
    font-family: Arial, Helvetica, sans-serif; /* Match desktop default font */
    font-size: 1.5rem; /* Slightly smaller for mobile */
    font-weight: bold;
    color: #e91e63; /* Match desktop reddish-pink */
    text-align: center;
    line-height: 32px; /* Match the height of the replaced MudImage */
}
/* /Components/SplashScreen.razor.rz.scp.css */
.splash-screen[b-ubfai3i99e] {
    position: fixed;
    inset: 0;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    /* prevent text/image selection inside splash */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /* Standard */
    /* kill any accidental focus/outline */
    outline: none;
    -webkit-tap-highlight-color: transparent;
    /* 🔥 explosion after 3s */
    animation: explodePieces-b-ubfai3i99e 0.8s forwards;
    animation-delay: 3s;
}

    .splash-screen *[b-ubfai3i99e] {
        /* cascade no-selection to all children */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

.logo[b-ubfai3i99e] {
    width: 120px;
    animation: float-b-ubfai3i99e 4s ease-in-out infinite, glow-b-ubfai3i99e 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 6px #fff);
    /* prevent dragging / selecting logo */
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

@keyframes float-b-ubfai3i99e {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow-b-ubfai3i99e {
    from {
        filter: drop-shadow(0 0 4px #fff);
    }

    to {
        filter: drop-shadow(0 0 15px #fff);
    }
}

.title[b-ubfai3i99e] {
    margin-top: 30px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    display: flex;
    /* block interactions */
    pointer-events: none;
    outline: none;
}

    .title span[b-ubfai3i99e] {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp-b-ubfai3i99e 0.6s forwards;
        color: #fff;
    }

        .title span:nth-child(1)[b-ubfai3i99e] {
            animation-delay: 0.1s;
        }

        .title span:nth-child(2)[b-ubfai3i99e] {
            animation-delay: 0.2s;
        }

        .title span:nth-child(3)[b-ubfai3i99e] {
            animation-delay: 0.3s;
        }

        .title span:nth-child(4)[b-ubfai3i99e] {
            animation-delay: 0.4s;
        }

        .title span:nth-child(5)[b-ubfai3i99e] {
            animation-delay: 0.5s;
        }

        .title span:nth-child(6)[b-ubfai3i99e] {
            animation-delay: 0.6s;
        }

        .title span:nth-child(7)[b-ubfai3i99e] {
            animation-delay: 0.7s;
        }

        .title span:nth-child(8)[b-ubfai3i99e] {
            animation-delay: 0.8s;
        }

        .title span:nth-child(9)[b-ubfai3i99e] {
            animation-delay: 0.9s;
        }

        .title span:nth-child(10)[b-ubfai3i99e] {
            animation-delay: 1.0s;
        }

        .title span:nth-child(11)[b-ubfai3i99e] {
            animation-delay: 1.1s;
        }

        .title span:nth-child(12)[b-ubfai3i99e] {
            animation-delay: 1.2s;
        }

        .title span:nth-child(13)[b-ubfai3i99e] {
            animation-delay: 1.3s;
        }

        .title span:nth-child(14)[b-ubfai3i99e] {
            animation-delay: 1.4s;
        }

        .title span:nth-child(15)[b-ubfai3i99e] {
            animation-delay: 1.5s;
        }

        .title span:nth-child(16)[b-ubfai3i99e] {
            animation-delay: 1.6s;
        }

@keyframes fadeUp-b-ubfai3i99e {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.explode[b-ubfai3i99e] {
    animation: explodePieces-b-ubfai3i99e 0.8s forwards;
}

@keyframes explodePieces-b-ubfai3i99e {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(3) rotate(45deg);
        filter: blur(8px);
        visibility: hidden;
    }
}
