@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/LoadingSpinner.razor.rz.scp.css */
.loading-container[b-y4rs2vnsw2] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.spinner[b-y4rs2vnsw2] {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin-b-y4rs2vnsw2 1s ease infinite;
}

@keyframes spin-b-y4rs2vnsw2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Base layout styles */
.casino-layout[b-92xm4wanv7] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

/* Top navigation styles */
.top-nav[b-92xm4wanv7] {
    background-color: #1a1e22;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    height: 56px; /* Fixed height for consistency */
}

.nav-wrapper[b-92xm4wanv7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo[b-92xm4wanv7] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8f9fa;
    text-decoration: none;
}

.auth-section[b-92xm4wanv7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* Push to right */
    height: 58px; /* Match parent height */
}

.user-info[b-92xm4wanv7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    width: 100%;
}

.user-email[b-92xm4wanv7] {
    color: #f8f9fa;
    text-decoration: none;
    max-width: 180px; /* Limit width */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.credits-badge[b-92xm4wanv7] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
}

.auth-buttons[b-92xm4wanv7] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
}

.btn[b-92xm4wanv7] {
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    height: 36px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login[b-92xm4wanv7] {
    background-color: #007bff;
    color: white;
}

.btn-register[b-92xm4wanv7] {
    background-color: #6c757d;
    color: white;
}

.btn-logout[b-92xm4wanv7] {
    background-color: #dc3545;
    color: white;
}

/* Main container */
.main-container[b-92xm4wanv7] {
    display: flex;
    flex: 1;
    position: relative; /* Added for positioning */
    background-color: #f4f4f4;
}

/* Sidebar navigation */
.sidebar[b-92xm4wanv7] {
    width: 250px;
    height: 100%;
    background-color: #343a40;
    color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow-y: auto; /* Allow scrolling for long menus */
}

.nav-menu[b-92xm4wanv7] {
    padding: 1rem;
}

.nav-item[b-92xm4wanv7] {
    margin-bottom: 0.5rem;
}

.nav-link[b-92xm4wanv7] {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
}

    .nav-link:hover[b-92xm4wanv7], .nav-link.active[b-92xm4wanv7] {
        color: white;
        background-color: rgba(255,255,255,0.1);
    }

    .nav-link span[class^="bi-"][b-92xm4wanv7] {
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }

.collapsible-header[b-92xm4wanv7] {
    cursor: pointer;
}

.child-item[b-92xm4wanv7] {
    padding-left: 1rem; /* optional indent */
}

.nav-item .ms-auto[b-92xm4wanv7] {
    margin-left: auto;
}

/* Content area */
.content-area[b-92xm4wanv7] {
    flex: 1;
    overflow-y: auto;
}

.content-wrapper[b-92xm4wanv7] {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile menu toggle */
.menu-toggle[b-92xm4wanv7] {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    margin-right: 10px;
}

.menu-icon[b-92xm4wanv7] {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    position: relative;
    transition: background-color 0.2s;
}

    .menu-icon[b-92xm4wanv7]::before,
    .menu-icon[b-92xm4wanv7]::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        background-color: white;
        left: 0;
        transition: transform 0.2s;
    }

    .menu-icon[b-92xm4wanv7]::before {
        top: -7px;
    }

    .menu-icon[b-92xm4wanv7]::after {
        bottom: -7px;
    }

/* Overlay for mobile */
.sidebar-overlay[b-92xm4wanv7] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 90;
}

/* Responsive styles */
@media (max-width: 768px) {
    .sidebar[b-92xm4wanv7] {
        position: fixed;
        left: 0;
        z-index: 99;
        transform: translateX(-100%);
        width: 80%; /* Control the width on mobile */
        max-width: 280px;
    }

    .main-container[b-92xm4wanv7] {
        display: block; /* Stack instead of flex on mobile */
    }

    .content-area[b-92xm4wanv7] {
        margin-left: 0;
        width: 100%;
    }

    .sidebar-open[b-92xm4wanv7] {
        transform: translateX(0);
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }

    .sidebar-overlay[b-92xm4wanv7] {
        display: block;
    }

    .menu-toggle[b-92xm4wanv7] {
        display: block;
        order: -1; /* Move the menu button to the left */
    }

    .nav-wrapper[b-92xm4wanv7] {
        justify-content: flex-end; /* Push content to the right */
    }

    .brand-logo[b-92xm4wanv7] {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .auth-section[b-92xm4wanv7] {
        width: 100%;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .auth-buttons[b-92xm4wanv7] {
        flex-direction: row;
        gap: 0.25rem;
    }

    .credits-badge[b-92xm4wanv7] {
        padding: 0.3rem 0.75rem;
        font-size: 0.9rem;
        height: 32px; /* Slightly smaller but still consistent */
    }

    .btn[b-92xm4wanv7] {
        padding: 0.3rem 0.75rem;
        font-size: 0.9rem;
        height: 32px; /* Slightly smaller but still consistent */
    }

    .brand-logo[b-92xm4wanv7] {
        font-size: 1.2rem;
    }

    .user-email[b-92xm4wanv7] {
        max-width: 120px;
        font-size: 0.9rem;
    }

    .auth-section[b-92xm4wanv7] {
        margin-right: 0;
    }
}
/* /Pages/Games/Roulette.razor.rz.scp.css */
.spinner[b-t8e432sp3m] {
	border: 4px solid rgba(0, 0, 0, 0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border-left-color: #09f;
	animation: spin-b-t8e432sp3m 1s ease infinite;
}

@keyframes spin-b-t8e432sp3m {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
/* /Pages/Games/SlotMachine.razor.rz.scp.css */
.slot-machine[b-f5tekqf16h] {
    margin: 0 auto;
    background-color: darkgray;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    border: solid 5px;
}

.slot-machine-container[b-f5tekqf16h] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reels-container[b-f5tekqf16h] {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    border: 5px solid;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    height: 200px;
}

.reel[b-f5tekqf16h] {
    width: 80px;
    height: 150px;
    background-color: #222;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

    .reel.spinning .symbols[b-f5tekqf16h] {
        animation: spin-reel 2s linear infinite;
    }

.symbols[b-f5tekqf16h] {
    position: absolute;
    width: 100%;
}

.symbol[b-f5tekqf16h] {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    background-color: #fff;
    margin: 5px;
    border-radius: 5px;
}

    .symbol.cherry[b-f5tekqf16h] {
        color: #ff0000;
    }

    .symbol.lemon[b-f5tekqf16h] {
        color: #ffcc00;
    }

    .symbol.orange[b-f5tekqf16h] {
        color: #ff8800;
    }

    .symbol.plum[b-f5tekqf16h] {
        color: #8800ff;
    }

    .symbol.bell[b-f5tekqf16h] {
        color: #ffaa00;
    }

    .symbol.bar[b-f5tekqf16h] {
        color: #000000;
        font-size: 28px;
    }

    .symbol.seven[b-f5tekqf16h] {
        color: #cc0000;
    }

.message-area[b-f5tekqf16h] {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.balances[b-f5tekqf16h] {
    display: flex;
    justify-content: space-evenly;
}

.balance[b-f5tekqf16h] {
    font-size: 24px;
    margin-bottom: 10px;
}

.result[b-f5tekqf16h] {
    font-size: 20px;
    height: 30px;
    font-weight: bold;
}

.spinButtonContainer[b-f5tekqf16h] {
    display: flex;
    justify-content: center;
    height: 100%;
}

.spinButton[b-f5tekqf16h] {
    font-size: 24px;
    width: 100%;
    background-color: #ff0000;
    color: #ffffff;
    border: 5px solid #0000ff;
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 255, 0.8);
}

button[b-f5tekqf16h] {
    border-radius: 10px;
}

/* /Pages/Home.Razor.rz.scp.css */
/* User List Page Styles */

/* Page Header */
h3[b-bf5incsp5g] {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Info Messages and Instructions */
.page-info[b-bf5incsp5g] {
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

    .page-info span[b-bf5incsp5g] {
        display: block;
        margin-bottom: 0.5rem;
        color: #2c3e50;
        font-weight: 500;
    }

        .page-info span:last-child[b-bf5incsp5g] {
            margin-bottom: 0;
        }

/* Loading State */
p[b-bf5incsp5g] {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    padding: 2rem;
}

/* User List Container */
ul[b-bf5incsp5g] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    /* Responsive grid - adjusts based on screen size */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Individual User Card */
li[b-bf5incsp5g] {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    position: relative;
}

    li:hover[b-bf5incsp5g] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #3498db;
    }

/* Player Name Section */
.player-name[b-bf5incsp5g] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .player-name .super-user-icon[b-bf5incsp5g] {
        font-size: 1.2rem;
    }

/* Balance Information */
.balance-info[b-bf5incsp5g] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.balance-item[b-bf5incsp5g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.balance-label[b-bf5incsp5g] {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.balance-value[b-bf5incsp5g] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Specific colors for different balance types */
.credits .balance-value[b-bf5incsp5g] {
    color: #f39c12;
}

.sips .balance-value[b-bf5incsp5g] {
    color: #27ae60;
}

.shots .balance-value[b-bf5incsp5g] {
    color: #e74c3c;
}

/* Action Buttons */
.action-buttons[b-bf5incsp5g] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

button[b-bf5incsp5g] {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.give-sip-btn[b-bf5incsp5g] {
    background-color: #27ae60;
    color: white;
}

    .give-sip-btn:hover[b-bf5incsp5g] {
        background-color: #219a52;
        transform: translateY(-1px);
    }

.give-shot-btn[b-bf5incsp5g] {
    background-color: #e74c3c;
    color: white;
}

    .give-shot-btn:hover[b-bf5incsp5g] {
        background-color: #c0392b;
        transform: translateY(-1px);
    }

/* Responsive Design */
@media (max-width: 768px) {
    ul[b-bf5incsp5g] {
        grid-template-columns: 1fr;
    }

    .balance-info[b-bf5incsp5g] {
        justify-content: space-around;
    }

    .action-buttons[b-bf5incsp5g] {
        flex-direction: column;
    }

    button[b-bf5incsp5g] {
        min-width: auto;
    }
}

@media (min-width: 1200px) {
    ul[b-bf5incsp5g] {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* Optional: Alternating card colors for better visual separation */
li:nth-child(even)[b-bf5incsp5g] {
    background-color: #fafbfc;
}

/* Super user highlight */
li:has(.super-user-icon)[b-bf5incsp5g] {
    border-left: 4px solid #f39c12;
}

    li:has(.super-user-icon):hover[b-bf5incsp5g] {
        border-left-color: #e67e22;
    }
/* /Pages/Info.razor.rz.scp.css */
.game-info-container[b-ou69195l56] {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h2[b-ou69195l56], h3[b-ou69195l56] {
    color: #8b0000;
}

section[b-ou69195l56] {
    margin-bottom: 1.5rem;
}

ul[b-ou69195l56] {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

@media (max-width: 600px) {
    .game-info-container[b-ou69195l56] {
        padding: 0.75rem;
    }
}
/* /Pages/Shop.Razor.rz.scp.css */
/* Shop Page Styles */

/* Page Header */
h3[b-n6z0wofkdq] {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Loading Spinner Container */
.loading-container[b-n6z0wofkdq] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Shop Items Container */
.shop-container[b-n6z0wofkdq] {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    padding: 0;
    margin: 0;
}

/* Individual Shop Item Card */
.shop-item[b-n6z0wofkdq] {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .shop-item:hover[b-n6z0wofkdq] {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        border-color: #3498db;
    }

/* Item Header */
.item-header[b-n6z0wofkdq] {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.item-name[b-n6z0wofkdq] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.item-price[b-n6z0wofkdq] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

    .item-price[b-n6z0wofkdq]::before {
        content: "💰";
        margin-right: 0.5rem;
    }

.item-required-level[b-n6z0wofkdq] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(155, 89, 182, 0.3);
}

    .item-required-level[b-n6z0wofkdq]::before {
        content: "⭐";
        margin-right: 0.5rem;
    }


/* Item Description */
.item-description[b-n6z0wofkdq] {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

/* Purchase Button Container */
.purchase-section[b-n6z0wofkdq] {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

/* Purchase Buttons */
.purchase-btn[b-n6z0wofkdq] {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .purchase-btn:enabled[b-n6z0wofkdq] {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        box-shadow: 0 3px 6px rgba(39, 174, 96, 0.3);
    }

        .purchase-btn:enabled:hover[b-n6z0wofkdq] {
            background: linear-gradient(135deg, #219a52, #27ae60);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(39, 174, 96, 0.4);
        }

        .purchase-btn:enabled:active[b-n6z0wofkdq] {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
        }

    .purchase-btn:disabled[b-n6z0wofkdq] {
        background: linear-gradient(135deg, #bdc3c7, #95a5a6);
        color: #7f8c8d;
        cursor: not-allowed;
        box-shadow: none;
    }

        .purchase-btn:disabled[b-n6z0wofkdq]::after {
            content: "🔒";
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }

/* Item Availability States */
.shop-item.unavailable[b-n6z0wofkdq] {
    opacity: 0.7;
    position: relative;
}

    .shop-item.unavailable[b-n6z0wofkdq]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(231, 76, 60, 0.1) 10px, rgba(231, 76, 60, 0.1) 20px );
        pointer-events: none;
        z-index: 1;
    }

/* Premium/Special Items */
.shop-item.premium[b-n6z0wofkdq] {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #ffffff, #fdf8e8);
    position: relative;
}

    .shop-item.premium[b-n6z0wofkdq]::after {
        content: "⭐ PREMIUM";
        position: absolute;
        top: -1px;
        right: -1px;
        background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white;
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 0 12px 0 12px;
        letter-spacing: 0.5px;
    }

/* Empty State */
.empty-shop[b-n6z0wofkdq] {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
}

.empty-shop-icon[b-n6z0wofkdq] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-shop-message[b-n6z0wofkdq] {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-container[b-n6z0wofkdq] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-item[b-n6z0wofkdq] {
        padding: 1.25rem;
    }

    .item-name[b-n6z0wofkdq] {
        font-size: 1.2rem;
    }

    .item-price[b-n6z0wofkdq] {
        font-size: 1rem;
        padding: 0.3rem 0.7rem;
    }
}

@media (min-width: 1200px) {
    .shop-container[b-n6z0wofkdq] {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Loading animation for purchase buttons */
.purchase-btn.loading[b-n6z0wofkdq] {
    pointer-events: none;
}

    .purchase-btn.loading[b-n6z0wofkdq]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: loading-b-n6z0wofkdq 1.5s infinite;
    }

@keyframes loading-b-n6z0wofkdq {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Subtle animations */
.shop-item[b-n6z0wofkdq] {
    animation: fadeInUp-b-n6z0wofkdq 0.3s ease-out;
}

@keyframes fadeInUp-b-n6z0wofkdq {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/User/User.Razor.rz.scp.css */
/* User Profile Page Styles */

/* Page Container */
.user-profile-container[b-ahp8wexc6d] {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Section Headers */
h3[b-ahp8wexc6d] {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    h3:first-child[b-ahp8wexc6d] {
        margin-top: 0;
    }

    /* Section Headers with Icons */
    h3.profile-header[b-ahp8wexc6d]::before {
        content: "👤";
        font-size: 1.5rem;
    }

    h3.balance-header[b-ahp8wexc6d]::before {
        content: "💰";
        font-size: 1.5rem;
    }

    h3.items-header[b-ahp8wexc6d]::before {
        content: "🎒";
        font-size: 1.5rem;
    }

/* Loading Container */
.loading-container[b-ahp8wexc6d] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Profile Section */
.profile-section[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-info[b-ahp8wexc6d] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.profile-item[b-ahp8wexc6d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #ecf0f1;
    transition: all 0.2s ease;
}

    .profile-item:hover[b-ahp8wexc6d] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.profile-label[b-ahp8wexc6d] {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.profile-value[b-ahp8wexc6d] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

    .profile-value.name[b-ahp8wexc6d] {
        color: #3498db;
    }

    .profile-value.level[b-ahp8wexc6d] {
        color: #9b59b6;
    }

    .profile-value.xp[b-ahp8wexc6d] {
        color: #e67e22;
    }

    .profile-value.xp-remaining[b-ahp8wexc6d] {
        color: #e74c3c;
    }

/* Balance Section */
.balance-section[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.balance-grid[b-ahp8wexc6d] {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.balance-item[b-ahp8wexc6d] {
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

    .balance-item:hover[b-ahp8wexc6d] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.balance-header[b-ahp8wexc6d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.balance-type[b-ahp8wexc6d] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.balance-amount[b-ahp8wexc6d] {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: white;
}

    .balance-amount.credits[b-ahp8wexc6d] {
        background: linear-gradient(135deg, #f39c12, #e67e22);
    }

    .balance-amount.sips[b-ahp8wexc6d] {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
    }

    .balance-amount.shots[b-ahp8wexc6d] {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

.balance-actions[b-ahp8wexc6d] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Action Buttons */
.action-btn[b-ahp8wexc6d] {
    flex: 1;
    min-width: 120px;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.buy-in-btn[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

    .buy-in-btn:hover[b-ahp8wexc6d] {
        background: linear-gradient(135deg, #2980b9, #1f4e79);
        transform: translateY(-1px);
    }

.consume-btn[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

    .consume-btn:hover[b-ahp8wexc6d] {
        background: linear-gradient(135deg, #c0392b, #a93226);
        transform: translateY(-1px);
    }

    .consume-btn:active[b-ahp8wexc6d] {
        transform: translateY(0);
    }

/* Items Section */
.items-section[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.items-grid[b-ahp8wexc6d] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.item-card[b-ahp8wexc6d] {
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

    .item-card:hover[b-ahp8wexc6d] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #3498db;
    }

.item-header[b-ahp8wexc6d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.item-name[b-ahp8wexc6d] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.item-count[b-ahp8wexc6d] {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .item-count[b-ahp8wexc6d]::before {
        content: "×";
        margin-right: 0.25rem;
    }

.item-description[b-ahp8wexc6d] {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Empty States */
.empty-state[b-ahp8wexc6d] {
    text-align: center;
    padding: 2rem;
    color: #7f8c8d;
}

.empty-state-icon[b-ahp8wexc6d] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-message[b-ahp8wexc6d] {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-profile-container[b-ahp8wexc6d] {
        padding: 0.5rem;
    }

    .profile-info[b-ahp8wexc6d] {
        grid-template-columns: 1fr;
    }

    .balance-grid[b-ahp8wexc6d] {
        grid-template-columns: 1fr;
    }

    .items-grid[b-ahp8wexc6d] {
        grid-template-columns: 1fr;
    }

    .balance-actions[b-ahp8wexc6d] {
        flex-direction: column;
    }

    .action-btn[b-ahp8wexc6d] {
        min-width: auto;
    }

    h3[b-ahp8wexc6d] {
        font-size: 1.5rem;
    }
}

/* Animations */
.profile-section[b-ahp8wexc6d],
.balance-section[b-ahp8wexc6d],
.items-section[b-ahp8wexc6d] {
    animation: slideInUp-b-ahp8wexc6d 0.3s ease-out;
}

.item-card[b-ahp8wexc6d],
.balance-item[b-ahp8wexc6d],
.profile-item[b-ahp8wexc6d] {
    animation: fadeIn-b-ahp8wexc6d 0.4s ease-out;
}

@keyframes slideInUp-b-ahp8wexc6d {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-ahp8wexc6d {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* XP Progress Bar (Optional Enhancement) */
.xp-progress[b-ahp8wexc6d] {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.xp-progress-bar[b-ahp8wexc6d] {
    height: 100%;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 4px;
    transition: width 0.3s ease;
}
