/* SIDEBAR BASE */
.rc-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: rgba(10, 14, 22, 0.75);
    backdrop-filter: blur(14px);
    border-right: 1px solid rgba(120,160,255,0.25);
    box-shadow: 0 0 25px rgba(120,160,255,0.15);
    padding: 26px 20px;
    transition: 0.35s ease;
    z-index: 9999;
}

/* WHEN OPEN */
.rc-sidebar.open {
    left: 0;
}

/* HEADER */
.rc-side-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.rc-side-logo {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px #6bb7ff);
}

.rc-side-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: #dfe6ff;
    text-shadow: 0 0 10px rgba(120,160,255,0.45);
}

/* NAVIGATION */
.rc-side-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rc-side-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #c7d4ff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.rc-side-nav a i {
    font-size: 20px;
    color: #6bb7ff;
    transition: 0.25s ease;
}

/* HOVER */
.rc-side-nav a:hover {
    background: rgba(120,160,255,0.12);
    border-color: rgba(120,160,255,0.35);
    box-shadow: 0 0 12px rgba(120,160,255,0.35);
    transform: translateX(6px);
}

.rc-side-nav a:hover i {
    color: #9ac7ff;
}

/* TOGGLE BUTTON */
.rc-sidebar-toggle {
    background: rgba(120,160,255,0.15);
    border: 1px solid #6bb7ff;
    color: #6bb7ff;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
    position: fixed;
    top: 26px;      /* mutat puțin mai jos */
    left: 26px;     /* mutat puțin mai la dreapta */
    z-index: 10000;
}

.rc-sidebar-toggle:hover {
    background: #6bb7ff;
    color: #000;
    box-shadow: 0 0 15px #6bb7ff;
}

/* SHIFT PAGE WHEN SIDEBAR OPENS */
body.rc-sidebar-open {
    transform: translateX(260px);
    transition: 0.35s ease;
}

/* LIMITED LABEL */
.rc-limited-label {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ff50c8;
    opacity: 0.85;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 80, 200, 0.8);
}

/* PARTY BUTTON */
.rc-limited-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg,
        rgba(255, 80, 200, 0.35),
        rgba(124, 92, 255, 0.35)
    );
    border: 1px solid rgba(255, 80, 200, 0.45);
    box-shadow:
        0 0 35px rgba(255, 80, 200, 0.65),
        0 0 70px rgba(124, 92, 255, 0.55),
        0 0 110px rgba(255, 80, 200, 0.45);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

/* ICON */
.rc-limited-btn i {
    font-size: 20px;
    color: #ffbaff;
    text-shadow:
        0 0 10px rgba(255, 80, 200, 0.9),
        0 0 20px rgba(124, 92, 255, 0.8);
}

/* HOVER */
.rc-limited-btn:hover {
    transform: translateX(6px) scale(1.05);
    background: linear-gradient(135deg,
        rgba(255, 80, 200, 0.55),
        rgba(124, 92, 255, 0.55)
    );
    border-color: rgba(255, 80, 200, 0.75);
    box-shadow:
        0 0 45px rgba(255, 80, 200, 0.85),
        0 0 90px rgba(124, 92, 255, 0.75),
        0 0 140px rgba(255, 80, 200, 0.65);
}
