/* SIDEBAR — glossy glass R-Core (matching header OS style) */
.rc-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;

    background: rgba(12, 14, 24, 0.78);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-right: 1px solid rgba(255,255,255,0.08);

    padding: 26px 20px;

    transform: translateX(-260px);
    transition: 0.35s ease;
    z-index: 9999;
}

.rc-sidebar.open {
    transform: translateX(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 12px #6bb7ff);
}

.rc-side-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: #dfe6ff;
    text-shadow: 0 0 12px rgba(120,160,255,0.45);
}

/* NAVIGATION — glossy electric hover */
.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: 12px;

    color: #c7d4ff;
    text-decoration: none;
    font-size: 15px;

    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;

    transition: 0.25s ease;
}

.rc-side-nav a i {
    font-size: 20px;
    color: #6bb7ff;
    transition: 0.25s ease;
}

.rc-side-nav a:hover {
    background: rgba(120,160,255,0.15);
    border-color: #6bb7ff;
    box-shadow: 0 0 18px rgba(120,160,255,0.45);
    transform: translateX(6px);
}

.rc-side-nav a:hover i {
    color: #9ac7ff;
}

/* LIMITED SECTION */
.rc-limited-label {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ff50c8;
    opacity: 0.85;
    letter-spacing: 1px;
}

.rc-limited-btn {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;

    background: rgba(255,80,200,0.15);
    color: #ff50c8;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;

    box-shadow: 0 0 12px rgba(255,80,200,0.35);
}

/* TEXTUL TĂU */
.rc-limited-btn::after {
    content: "Nothing here except the crickets. Check back in the future!";
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.7;
}

.rc-sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;

    width: 44px;
    height: 44px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,0.08);
    border: 1px solid #6bb7ff;
    color: #6bb7ff;

    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;

    z-index: 10000;
    transition: 0.25s ease;
}

.rc-sidebar-toggle:hover {
    background: #6bb7ff;
    color: #000;
    box-shadow: 0 0 18px #6bb7ff;
}

.rc-sidebar p {
    color: #9a9ab5;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
}