* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(to bottom right, #2C2C2C, #1C1C1C);
    color: #FFFFFF;
    min-height: 100vh;
    overflow-y: auto;
    transition: background 0.5s ease, color 0.5s ease;
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: #212121;
}

html::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF00FF, #FF69B4);
    border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF69B4, #FF00FF);
}

.content {
    position: relative;
    padding-bottom: 30px;
}

.content-bg {
    background-color: rgba(50, 50, 50, 0.9);
    position: relative;
    padding-bottom: 30px;
    transition: background-color 0.5s ease;
    --corner-color: white;
}

.content-bg::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--corner-color);
    border-right: none;
    border-bottom: none;
    top: 10px;
    left: 10px;
    transition: border-color 0.5s ease;
}

.content-bg::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--corner-color);
    border-bottom: 2px solid var(--corner-color);
    bottom: 10px;
    right: 10px;
    transition: border-color 0.5s ease;
}

.content h1, .content h3 {
    background: linear-gradient(90deg, #FF69B4, #9370DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #FF69B4, #9370DB) 1;
}

.content h1 {
    font-size: 2.25rem;
    color: #FF69B4;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.content h2 {
    font-size: 1.5rem;
    color: #808080;
}

.content h2.name {
    color: #FFFFFF;
}

.content h3 {
    font-size: 1.25rem;
    color: #FF69B4;
    display: inline-block;
    padding-bottom: 0.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content .grid {
    gap: 1rem;
}

.content .space-y-6 {
    margin-top: 1rem;
}

.content .mb-6 {
    margin-bottom: 1rem;
}

.content p, .content li {
    font-size: 0.9rem;
    line-height: 1.4;
}

.current-job {
    border-left: 4px solid #FF69B4;
    padding-left: 1rem;
    position: relative;
}

.current-job::before {
    content: none;
}

.personal-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.personal-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: initial;
}

.personal-info p {
    font-size: 0.7rem;
    color: #A0A0A0;
    margin-top: 0;
}

#menuOverlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;
}

#sideMenu {
    z-index: 11;
    background: linear-gradient(to bottom, #2C2C2C, #1C1C1C);
    transition: transform 0.3s ease, background 0.5s ease;
}

#logoContainer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    width: 40px;
    transition: width 0.3s ease;
}

#logoContainer:hover {
    width: 170px;
}

#logoImage {
    transition: transform 0.3s ease;
}

#logoText {
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.3s ease, filter 0.3s ease;
    white-space: nowrap;
    font-size: 20px;
}

#logoContainer:hover #logoText {
    opacity: 1;
    filter: blur(0);
}

header {
    position: relative;
}

.transition-fade {
    transition: 0.4s;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
}

.transition-fade-slide-up {
    transition: 0.5s;
    opacity: 1;
    transform: translateY(0);
    -webkit-filter: blur(0);
}

html.is-animating .transition-fade-slide-up {
    opacity: 0;
    transform: translateY(100%);
    -webkit-filter: blur(15px);
}

#loading-animation {
    transition: opacity 0.3s ease-in-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

#loader {
    z-index: 99;
    color: white;
    font-size: 32px;
    bottom: 0;
}

#notification-container {
    bottom: 0;
    z-index: 12!important;
}

.notification {
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 12px;
    position: relative;
    animation: slideIn-Right 0.3s ease-in-out;
}

.notification-icon {
    color: white!important;
    margin-right: 5px;
}

.notification-close {
    position: absolute;
    top: -5px;
    right: 6px;
    cursor: pointer;
    color: white!important;
}

.notification-message {
    white-space: pre-line;
    padding-right: 12px;
}

.file-info {
    overflow: hidden;
}

.file-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-link {
    position: relative;
    display: inline-block;
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF69B4;
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link.active {
    color: #FF69B4;
    font-weight: bold;
}

.menu-link.active::after {
    width: 100%;
}

.progress-bar {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF00FF, #FF69B4);
    transition: width 1s ease-out;
    width: 0;
}

.progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #FF69B4;
}

.user-profile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 11;
}

.admin-badge {
    background: linear-gradient(45deg, #ff2b2b, #fc346e);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 9999px;
}

.user-badge {
    background: linear-gradient(45deg, #FF69B4, #9370DB);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 9999px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.rotate {
    transition: transform 0.3s ease;
}

.rotate-up {
    transform: rotate(-180deg);
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0%);
    }
}

@keyframes slideOutToBottom {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slideIn-Right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}