:root {
    --primary: #22c55e;
    --primary-glow: rgba(34, 197, 94, 0.5);
    --bg-dark: #09090b;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(24, 24, 27, 0.6);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(34, 197, 94, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.05), transparent 25%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.order-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-row.active {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.order-row.active .order-id {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}



.status-pill {
    position: relative;
    overflow: hidden;
    padding: 0.35rem 0.65rem;
    font-size: 12px;
    gap: 0.35rem;
    letter-spacing: 0.01em;
    border-width: 1px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.status-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.32);
    opacity: 1;
    z-index: 0;
}

.status-pill>* {
    position: relative;
    z-index: 1;
}

.status-pill i {
    font-size: 0.9em;
}

/* Renew Step Dots */
.renew-step-dot {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #18181b;
    color: #52525b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid #27272a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.renew-step-dot.active {
    background: #22c55e;
    color: black;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transform: scale(1.1);
}

.renew-step-dot.completed {
    background: #09090b;
    color: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

/* Renew plan/type selection active state */
.renew-duration-option.renew-option-active,
.renew-type-option.renew-option-active {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}
