﻿.glass-panel {
    background: rgba(15, 23, 42, 0.6); /* blue dark glass */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.blue-gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blue-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1E293B;
}


body::before {
    content: "";
    position: fixed;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176,72,255,0.25), transparent 70%);
    filter: blur(140px);
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    bottom: -20%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176,72,255,0.15), transparent 70%);
    filter: blur(120px);
    z-index: -1;
}


.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236, 182, 19, 0.1);
}

.gold-gradient {
    background: linear-gradient(135deg, #ecb613 0%, #a67c00 100%);
}

.card-shimmer {
    background: linear-gradient(110deg, rgba(236,182,19,0.1) 0%, rgba(236,182,19,0.05) 50%, rgba(236,182,19,0.1) 100%);
}

/* 🔥 Small Left Corner Ribbon */
.beta-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
}

    .beta-ribbon span {
        position: absolute;
        width: 180px;
        padding: 6px 0;
        background: linear-gradient(135deg, #b048ff, #9333ea);
        color: #000;
        font-weight: 700;
        font-size: 10px;
        text-align: center;
        letter-spacing: 1px;
        transform: rotate(-45deg);
        top: 25px;
        left: -50px;
        box-shadow: 0 0 15px rgba(176, 72, 255, 0.35);
    }


/* 🔥 PREMIUM PURPLE SELECT */

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 180px;
    height: 46px;
    padding: 0 45px 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(176, 72, 255, 0.35);
    background: rgba(15, 15, 25, 0.92);
    backdrop-filter: blur(16px);
    color: #f5f3ff;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 0 rgba(176, 72, 255, 0), inset 0 1px 0 rgba(255,255,255,0.03);
}

    .custom-select:hover {
        border-color: rgba(176, 72, 255, 0.65);
        box-shadow: 0 0 20px rgba(176, 72, 255, 0.12);
    }

    .custom-select:focus {
        border-color: #b048ff;
        box-shadow: 0 0 0 4px rgba(176, 72, 255, 0.12), 0 0 25px rgba(176, 72, 255, 0.18);
    }

    /* Dropdown options */

    .custom-select option {
        background: #12091c;
        color: #f5f3ff;
        padding: 12px;
        font-weight: 500;
    }

/* Arrow */

.select-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #c084fc;
    font-size: 20px;
}

.status-option {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

    .status-option:hover {
        background: rgba(176, 72, 255, 0.15);
        color: #fff;
        padding-left: 22px;
    }