/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-iukw1mlaup] {
    position: relative;
    display: flex;
    flex-direction: column;
}



.top-row[b-iukw1mlaup] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-iukw1mlaup]  a, .top-row[b-iukw1mlaup]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-iukw1mlaup]  a:hover, .top-row[b-iukw1mlaup]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-iukw1mlaup]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-iukw1mlaup] {
        justify-content: space-between;
    }

    .top-row[b-iukw1mlaup]  a, .top-row[b-iukw1mlaup]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-iukw1mlaup] {
        flex-direction: row;
    }

    .sidebar[b-iukw1mlaup] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-iukw1mlaup] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-iukw1mlaup]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-iukw1mlaup], article[b-iukw1mlaup] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-iukw1mlaup] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-iukw1mlaup] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* ==========================================================================
   ReconnectModal - Glass Card Violet Style
   Matches NPG design system with glass morphism effects
   ========================================================================== */

/* Dialog Element - Hidden by default, shown via showModal() */
#components-reconnect-modal[b-2g8cjlas4i] {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
}

/* When dialog is open (showModal() called), apply fullscreen overlay */
#components-reconnect-modal[open][b-2g8cjlas4i] {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#components-reconnect-modal[b-2g8cjlas4i]::backdrop {
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Container - Glass Card Violet Pattern */
.components-reconnect-container[b-2g8cjlas4i] {
    position: relative;
    background: linear-gradient(135deg, hsl(267deg 100% 49% / 40%) 0%, hsl(243deg 50% 12% / 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    box-shadow:
        0 0 40px hsl(263deg 70% 50% / 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Gradient border effect via pseudo-element */
.components-reconnect-container[b-2g8cjlas4i]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, hsl(263deg 70% 60% / 0.6), hsl(180deg 85% 55% / 0.3), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Top glow effect */
.components-reconnect-container[b-2g8cjlas4i]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(180deg 85% 55% / 0.8), transparent);
    pointer-events: none;
}

/* Text Styling */
.components-reconnect-container p[b-2g8cjlas4i] {
    color: hsl(210deg 40% 98%);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.5rem 0;
}

/* ==========================================================================
   Loading Animation - Pulsing Dots
   ========================================================================== */
.components-rejoining-animation[b-2g8cjlas4i] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.components-rejoining-animation > div[b-2g8cjlas4i] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(180deg 85% 55%), hsl(263deg 70% 50%));
    animation: reconnect-pulse-b-2g8cjlas4i 1.4s ease-in-out infinite;
}

.components-rejoining-animation > div:nth-child(2)[b-2g8cjlas4i] {
    animation-delay: 0.2s;
}

@keyframes reconnect-pulse-b-2g8cjlas4i {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ==========================================================================
   Button Styling - NPG Cyan Pattern
   ========================================================================== */
#components-reconnect-button[b-2g8cjlas4i],
#components-resume-button[b-2g8cjlas4i] {
    background: linear-gradient(90deg, hsl(180deg 85% 55%), hsl(82deg 85% 55%));
    color: hsl(243deg 50% 12%);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#components-reconnect-button:hover[b-2g8cjlas4i],
#components-resume-button:hover[b-2g8cjlas4i] {
    transform: scale(1.05);
    box-shadow: 0 0 20px hsl(180deg 85% 55% / 0.5);
}

#components-reconnect-button:focus[b-2g8cjlas4i],
#components-resume-button:focus[b-2g8cjlas4i] {
    outline: 2px solid hsl(263deg 70% 50%);
    outline-offset: 2px;
}

#components-reconnect-button:active[b-2g8cjlas4i],
#components-resume-button:active[b-2g8cjlas4i] {
    transform: scale(0.98);
}

/* ==========================================================================
   State-Based Visibility Rules
   Blazor adds these classes to #components-reconnect-modal:
   - components-reconnect-show: connection lost, attempting to reconnect
   - components-reconnect-hide: connection restored
   - components-reconnect-failed: reconnection attempts exhausted
   - components-reconnect-rejected: server rejected the connection
   Custom classes (added by JS):
   - components-reconnect-paused: session paused by server
   - components-reconnect-resume-failed: resume attempt failed
   ========================================================================== */

/* Hide all state-specific elements by default */
.components-reconnect-first-attempt-visible[b-2g8cjlas4i],
.components-reconnect-repeated-attempt-visible[b-2g8cjlas4i],
.components-reconnect-failed-visible[b-2g8cjlas4i],
.components-pause-visible[b-2g8cjlas4i],
.components-resume-failed-visible[b-2g8cjlas4i] {
    display: none;
}

/* Hide animation by default */
.components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

/* ==========================================================================
   Reconnecting State (components-reconnect-show)
   Show animation and "Rejoining the server..." message
   ========================================================================== */
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-2g8cjlas4i] {
    display: flex;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Failed State (components-reconnect-failed)
   Hide animation, show failure message and retry button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-failed .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-first-attempt-visible[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Paused State (components-reconnect-paused)
   Show paused message and resume button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-paused .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Resume Failed State (components-reconnect-resume-failed)
   Show resume failed message and resume button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-resume-failed .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 480px) {
    .components-reconnect-container[b-2g8cjlas4i] {
        min-width: auto;
        width: calc(100vw - 2rem);
        padding: 1.5rem;
    }

    #components-reconnect-button[b-2g8cjlas4i],
    #components-resume-button[b-2g8cjlas4i] {
        width: 100%;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/*
#Introduction {
    background-color: #6a33ff;
}

    #Introduction::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(img/bkg.png) !important;
        background-size: 100% auto;
        background-position: center;
        z-index: 0;
        opacity: 0.5;
    }

.button-primary {
    background-image: url(img/btn-primary.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

#Introduction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/bkg.png) !important;
    background-color: #6a33ff;
    background-size: 100% auto;
    background-position: center;
    z-index: -1;
}

.passion-one-regular {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.passion-one-bold {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.passion-one-black {
    font-family: "Passion One", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamer-image, .beast-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gamer-image {
    animation: showGamer 10s infinite;
}

.beast-image {
    animation: showBeast 10s infinite;
}

.progress-bar-1, .progress-bar-2 {
    width: 20%;
    transition: width 0.5s ease-in-out;
}

.progress-bar-1 {
    animation: progressBar1 8s infinite;
}

.progress-bar-2 {
    animation: progressBar2 8s infinite;
}

@keyframes showGamer {
    0%, 95% {
        opacity: 1;
    }

    95.1%, 100% {
        opacity: 0;
    }
}

@keyframes showBeast {
    0%, 80% {
        opacity: 0;
    }

    80.1%, 100% {
        opacity: 1;
    }
}

@keyframes progressBar1 {
    0% {
        width: 20%;
    }

    20% {
        width: 10%;
    }

    40% {
        width: 40%;
    }

    60% {
        width: 20%;
    }

    80% {
        width: 90%;
    }

    100% {
        width: 20%;
    }
}

@keyframes progressBar2 {
    0% {
        width: 20%;
    }

    20% {
        width: 30%;
    }

    40% {
        width: 20%;
    }

    60% {
        width: 90%;
    }

    80% {
        width: 10%;
    }

    100% {
        width: 20%;
    }
}

@keyframes hover {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 10px;
    }

    100% {
        margin-bottom: 0;
    }
}

@keyframes slowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.05);
    }
}

@keyframes growIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cash-floater {
    animation: growIn 0.5s ease-out forwards, slowBounce 2s ease-in-out infinite 0.5s;
    position: absolute;  
    left: 50%; 
    transform: translateX(-50%);
    background: linear-gradient(45deg, #31fff5 0%, #00b4d8 100%);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 8px -8px 16px rgba(33, 5, 55, 0.28);
    font-size: 1.6rem;
    color: #ffffff;
    min-width: 80px;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(1, 0, 3, 0.158);
    transform-origin: center bottom;
    z-index: 999999999;
    bottom: calc(80% + 2vw); 

    @media (min-width: 2400px){
        bottom: calc(73% + 2vw); 
    }
}

    .cash-floater::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #00e7ef;
    }

    .cash-floater::before {
        content: '$';
        position: absolute;
        left: 12px;
        color: rgba(5, 1, 14, 0.172);
        font-weight: 600;
        font-size: 1.2rem;
        text-shadow: none;
    }

.cash-floater-2 {
    background: linear-gradient(-25deg, #ff00ff 0%, #ff00b3 100%);
    box-shadow: -8px -8px 16px rgba(33, 5, 55, 0.28);
}

    .cash-floater-2::after {
        border-top: 8px solid #ff00ff;
    }

.cash-floater span {
    margin-left: 12px;
}

.number-transition {
    transition: all 0.5s ease-out;
}
*/

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");*/

/*@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {*/
        /* Deep gaming dark theme */
        /*--background: 0 0% 0% / 0;
        --foreground: 210 40% 98%;
        --card: 243 50% 12%;
        --card-foreground: 210 40% 98%;
        --popover: 243 50% 12%;
        --popover-foreground: 210 40% 98%;*/
        /* Vibrant violet primary */
        /*--primary: 263 70% 50%;
        --primary-foreground: 210 40% 98%;*/
        /* Accent colors - gaming neons */
        /*--secondary: 243 40% 20%;
        --secondary-foreground: 210 40% 98%;
        --muted: 243 30% 18%;
        --muted-foreground: 0 0% 100% / 0.8;
        --accent: 180 85% 55%;
        --accent-foreground: 243 75% 8%;
        --destructive: 0 84% 60%;
        --destructive-foreground: 210 40% 98%;
        --border: 263 40% 40% / 0.3;
        --input: 263 40% 40% / 0.3;
        --ring: 263 70% 50%;
        --radius: 0.75rem;*/
        /* Custom gaming colors */
        /*--npg-violet: 263 70% 50%;
        --npg-pink: 328 85% 60%;
        --npg-fuchsia: 295 80% 55%;
        --npg-cyan: 180 85% 55%;
        --npg-lime: 82 85% 55%;
        --npg-orange: 25 95% 55%;
        --npg-sky: 200 85% 55%;*/
        /* Gradients */
        /*--gradient-hero: linear-gradient(135deg, hsl(263 70% 35%) 0%, hsl(243 75% 8%) 50%, hsl(243 75% 5%) 100%);
        --gradient-violet: linear-gradient(135deg, hsl(263 70% 50%) 0%, hsl(295 80% 55%) 100%);
        --gradient-cyan: linear-gradient(135deg, hsl(180 85% 55%) 0%, hsl(82 85% 55%) 100%);
        --gradient-pink: linear-gradient(135deg, hsl(328 85% 60%) 0%, hsl(295 80% 55%) 100%);
        --gradient-orange: linear-gradient(135deg, hsl(25 95% 55%) 0%, hsl(45 95% 55%) 100%);
        --gradient-card: linear-gradient(180deg, hsl(243 50% 15%) 0%, hsl(243 50% 10%) 100%);*/
        /* Shadows & Glows */
        /*--shadow-glow-cyan: 0 0 40px hsl(180 85% 55% / 0.3);
        --shadow-glow-pink: 0 0 40px hsl(328 85% 60% / 0.3);
        --shadow-glow-violet: 0 0 40px hsl(263 70% 50% / 0.4);
        --shadow-card: 0 25px 50px -12px hsl(0 0% 0% / 0.5);
        --sidebar-background: 243 50% 10%;
        --sidebar-foreground: 210 40% 98%;
        --sidebar-primary: 263 70% 50%;
        --sidebar-primary-foreground: 210 40% 98%;
        --sidebar-accent: 243 40% 20%;
        --sidebar-accent-foreground: 210 40% 98%;
        --sidebar-border: 263 40% 25%;
        --sidebar-ring: 263 70% 50%;
    }

    .dark {
        --background: 243 75% 8%;
        --foreground: 210 40% 98%;
        --card: 243 50% 12%;
        --card-foreground: 210 40% 98%;
        --popover: 243 50% 12%;
        --popover-foreground: 210 40% 98%;
        --primary: 263 70% 50%;
        --primary-foreground: 210 40% 98%;
        --secondary: 243 40% 20%;
        --secondary-foreground: 210 40% 98%;
        --muted: 243 30% 18%;
        --muted-foreground: 243 20% 60%;
        --accent: 180 85% 55%;
        --accent-foreground: 243 75% 8%;
        --destructive: 0 62% 30%;
        --destructive-foreground: 210 40% 98%;
        --border: 263 40% 40% / 0.3;
        --input: 263 40% 40% / 0.3;
        --ring: 263 70% 50%;
    }
}

@layer base {
    * {
        @apply border-border;
    }

    body {
        @apply text-foreground font-sans antialiased;
        font-family: "Poppins", system-ui, sans-serif;
        background: radial-gradient(circle at bottom left, rgb(0 0 0), rgb(117 0 255), rgb(40, 0, 135));
        background-attachment: fixed;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Poppins", system-ui, sans-serif;
        @apply font-bold tracking-tight;
    }
}

@layer utilities {
    .bg-background {
        background: radial-gradient(circle at bottom left, rgb(0 0 0), rgb(117 0 255), rgb(40, 0, 135));
    }

    .text-gradient-violet {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-violet);
    }

    .text-gradient-cyan {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-cyan);
    }

    .text-gradient-pink {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-pink);
    }

    .bg-gradient-hero {
        background: var(--gradient-hero);
    }

    .bg-gradient-violet {
        background: var(--gradient-violet);
    }

    .bg-gradient-cyan {
        background: var(--gradient-cyan);
    }

    .bg-gradient-pink {
        background: var(--gradient-pink);
    }

    .bg-gradient-orange {
        background: var(--gradient-orange);
    }

    .bg-gradient-card {
        background: var(--gradient-card);
    }

    .glow-cyan {
        box-shadow: var(--shadow-glow-cyan);
    }

    .glow-pink {
        box-shadow: var(--shadow-glow-pink);
    }

    .glow-violet {
        box-shadow: var(--shadow-glow-violet);
    }

    .card-shadow {
        box-shadow: var(--shadow-card);
    }*/

    /* Animated gradient border */
    /*.gradient-border {
        position: relative;
        background: hsl(var(--card));
        border-radius: var(--radius);
    }

        .gradient-border::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: calc(var(--radius) + 2px);
            background: var(--gradient-violet);
            z-index: -1;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .gradient-border:hover::before {
            opacity: 1;
        }*/

    /* Glass morphism */
    /*.glass {
        background: linear-gradient(135deg, hsl(0deg 0% 0% / 31%) 0%, hsl(266.05deg 100% 34.77% / 36%) 100%);
        backdrop-filter: blur(12px);
        border: 1px solid hsl(var(--border) / 0.5);
    }*/

    /* Glass Card Base - now uses same styles as .glass */
    /*.glass-card {
        background: linear-gradient(135deg, hsl(0deg 0% 0% / 31%) 0%, hsl(266.05deg 100% 34.77% / 36%) 100%);
        backdrop-filter: blur(12px);
        border: 1px solid hsl(var(--border) / 0.5);
    }*/

    /* Glass Card Violet */
    /*.glass-card-violet {
        position: relative;
        background: linear-gradient(135deg, hsl(267.36deg 100% 49.02% / 40%) 0%, hsl(var(--card) / 0.4) 100%);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(265.22deg 81.18% 33.33%), inset 0 1px 0 hsl(267.4deg 100% 50% / 51%);
    }

        .glass-card-violet::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(250deg 85% 60% / 40%) 0%, hsl(263deg 70% 50% / 40%) 50%, hsl(295deg 80% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-violet:hover::before {
            opacity: 1;
        }

        .glass-card-violet::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(270deg 80% 35% / 0.25) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Cyan */
    /*.glass-card-cyan {
        position: relative;
        background: linear-gradient(135deg, hsl(181.04deg 100% 62.25% / 37%) 0%, hsl(265.75deg 98.21% 43.73%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-cyan::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(180deg 85% 55% / 40%) 50%, hsl(82deg 85% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-cyan:hover::before {
            opacity: 1;
        }

        .glass-card-cyan::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-cyan) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Pink */
    /*.glass-card-pink {
        position: relative;
        background: linear-gradient(135deg, hsl(333.52deg 100% 41.3% / 80%) 0%, hsl(341.94deg 100% 31.71% / 40%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-pink::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(328deg 85% 60% / 40%) 50%, hsl(295deg 80% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-pink:hover::before {
            opacity: 1;
        }

        .glass-card-pink::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-pink) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Green */
    /*.glass-card-green {
        position: relative;
        background: linear-gradient(135deg, hsl(130.75deg 100% 50% / 71%), hsl(95.11deg 100% 50% / 65%));
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-green::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(130deg 100% 50% / 40%) 0%, hsl(95deg 100% 50% / 40%) 50%, hsl(82deg 85% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-green:hover::before {
            opacity: 1;
        }

        .glass-card-green::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-lime) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Lime - alias for green with lime styling */
    /*.glass-card-lime {
        position: relative;
        background: linear-gradient(135deg, hsl(82deg 85% 55% / 20%) 0%, hsl(var(--card) / 0.6) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid hsl(82deg 85% 55% / 30%);
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(82deg 85% 55% / 0.1);
    }

        .glass-card-lime::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(82deg 85% 55% / 50%) 0%, hsl(95deg 85% 50% / 30%) 50%, hsl(120deg 60% 45% / 20%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-lime:hover::before {
            opacity: 1;
        }

        .glass-card-lime::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(82deg 85% 55% / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Orange */
    /*.glass-card-orange {
        position: relative;
        background: linear-gradient(135deg, hsl(27.3deg 100% 50% / 92%) 0%, hsl(38.43deg 100% 50% / 47%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-orange::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(328deg 85% 60% / 40%) 0%, hsl(25deg 95% 55% / 40%) 50%, hsl(45deg 95% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-orange:hover::before {
            opacity: 1;
        }

        .glass-card-orange::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-orange) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Button */
    /*.glass-button {
        position: relative;
        background: linear-gradient(135deg, hsl(var(--card) / 0.8) 0%, hsl(var(--card) / 0.4) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-button::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(180deg 85% 55% / 40%) 50%, hsl(328deg 85% 60% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-button:hover::before {
            opacity: 1;
        }

        .glass-button::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-violet) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Floating animation */
    /*@keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;
    }*/

    /* Pulse glow animation */
    /*@keyframes pulse-glow {
        0%, 100% {
            box-shadow: 0 0 20px hsl(180 85% 55% / 0.3);
        }

        50% {
            box-shadow: 0 0 40px hsl(180 85% 55% / 0.6);
        }
    }

    .animate-pulse-glow {
        animation: pulse-glow 2s ease-in-out infinite;
    }*/

    /* Shimmer effect */
    /*@keyframes shimmer {
        0% {
            background-position: -200% 0;
        }

        100% {
            background-position: 200% 0;
        }
    }

    .animate-shimmer {
        background: linear-gradient(90deg, transparent, hsl(var(--foreground) / 0.1), transparent);
        background-size: 200% 100%;
        animation: shimmer 2s infinite;
    }*/

    /* Status-based gradient cards */
    /*.status-card-past {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(328 85% 50%) 0%, hsl(295 80% 45%) 100%);
    }

    .status-card-upcoming {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(200 85% 50%) 0%, hsl(220 80% 45%) 100%);
    }

    .status-card-active {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(82 85% 45%) 0%, hsl(120 70% 40%) 100%);
    }

    .status-card-default {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(328 85% 50%) 0%, hsl(295 80% 45%) 100%);
    }*/

    /* Tournament detail card styles */
    /*.card-tournament-open {
        @apply min-h-[140px];
        background: linear-gradient(135deg, hsl(259 80% 45% / 0.8) 0%, hsl(295 70% 40% / 0.8) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-tournament-live {
        background: linear-gradient(135deg, hsl(142 70% 35% / 0.9) 0%, hsl(160 60% 30% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-tournament-soon {
        background: linear-gradient(135deg, hsl(200 80% 45% / 0.9) 0%, hsl(220 70% 40% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-win {
        background: linear-gradient(135deg, hsl(45 90% 45% / 0.9) 0%, hsl(35 85% 40% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-org-wins {
        backdrop-filter: blur(12px);
    }

    .bg-gradient-overlay {
        background: linear-gradient(to top, hsl(var(--background)) 0%, hsl(var(--background) / 0.8) 30%, transparent 100%);
    }
}*/

/*@import url("https://www.nextprogamer.com/tailwind-app.css");*/
/* /Components/Pages/Tournaments/TournamentRegistrationFlow.razor.rz.scp.css */
.title-text[b-qd3mguo4ly] {
/*    text-shadow: 0 0 1px #b388ff;*/
    background: -webkit-radial-gradient(20% 80%, #b388ff, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* /Components/Shared/MatchChat.razor.rz.scp.css */
/* Slide-up animation for chat panel */
@keyframes slide-up-b-ckd4xao2hj {
    from {
        opacity: 0;
        transform: translateY(1rem) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-panel[b-ckd4xao2hj] {
    animation: slide-up-b-ckd4xao2hj 0.25s ease-out;
}

/* FAB glow pulse — Match mode (violet) */
@keyframes glow-pulse-b-ckd4xao2hj {
    0%, 100% {
        box-shadow: 0 0 8px hsl(263 70% 50% / 0.4);
    }
    50% {
        box-shadow: 0 0 20px hsl(263 70% 50% / 0.7), 0 0 40px hsl(295 80% 55% / 0.3);
    }
}

.chat-fab[b-ckd4xao2hj] {
    animation: glow-pulse-b-ckd4xao2hj 3s ease-in-out infinite;
}

/* FAB glow pulse — Global mode (cyan) */
@keyframes glow-pulse-cyan-b-ckd4xao2hj {
    0%, 100% {
        box-shadow: 0 0 8px hsl(180 85% 55% / 0.4);
    }
    50% {
        box-shadow: 0 0 20px hsl(180 85% 55% / 0.7), 0 0 40px hsl(190 90% 50% / 0.3);
    }
}

.chat-fab-cyan[b-ckd4xao2hj] {
    animation: glow-pulse-cyan-b-ckd4xao2hj 3s ease-in-out infinite;
}
