.content-wrapper {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(232, 225, 221, 0.596);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    background-color: #221f1d;
    color: #c8beb4;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 204, 192, 0.1);
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 204, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    color: #2a231d;
    background-color: #d6ccc0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    border-color: rgba(214, 204, 192, 0.4);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.welcome-section {
    padding-bottom: 10px;
}

.welcome-title {
    font-size: 1.30rem;
    font-weight: 500;
    color: #d6ccc0;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.greeting {
    font-size: 1rem;
    color: rgba(214, 204, 192, 0.7);
    margin: 0;
    font-weight: 400;
}