
.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the sub-containers */
}

.sidebar {
    flex: 1; /* Takes up smaller portion of space */
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(170, 51, 255, 0.2);
    color: white;
    height: fit-content;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Increased gap makes them feel more 'disconnected' */
    background: transparent !important;
    border: none !important;
}


.sidebar h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    color: #00ff04;
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(170, 51, 255, 0.3);
    padding-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    font-family: 'Quantico', sans-serif;
}

.sidebar li {
    padding: 8px 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar li:hover {
    color: #aa33ff;
    padding-left: 5px; /* Slight nudge on hover */
}



.socials-sidebar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 15px;
}



.sidebar-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(170, 51, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.social-links-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    font-family: 'Quantico', sans-serif;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.social-link:hover {
    color: #aa33ff;
    padding-left: 5px;
    text-shadow: 0 0 8px rgba(170, 51, 255, 0.6);
}