body {
    background: linear-gradient(135deg, #232946 0%, #121629 100%);
    cursor: default;
}

.cv-card {
    background: linear-gradient(135deg, #232946 60%, #394867 100%);
    border-radius: 1.5rem;
    border: none;
}

.cv-sidebar {
    color: #e0e6f7;
}

.cv-sidebar h6 {
    color: #9daaf2;
    margin-bottom: 1.0rem;
}

.cv-sidebar span {
    color: #e0e6f7;
    font-size: 1rem;
    font-weight: 500;
}

.cv-main {
    color: #e0e6f7;
}

.cv-profile-img {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    background: #232946;
    border: 4px solid #394867;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-profile-img:hover {
    transform: scale(1.15);
    z-index: 2;
}

.cv-title {
    color: #e0e6f7 !important;
}

.contact-icon {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-icon:hover {
    transform: rotate(360deg) scale(1.5);
}

.cv-hr {
    border-color: #394867;
}

.cv-section-title {
    color: #9daaf2;
    margin-bottom: 1.5rem;
}

.cv-section-text {
    color: #e0e6f7;
}

.job-title {
    color: #9daaf2;
}

.cv-subtitle a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

.cv-subtitle a i {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) ;
}

.cv-subtitle a:hover i {
    color: #4fd1c5;
    transform: scale(1.25);
}

.skill {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.star-animate {
    opacity: 1 !important;
    display: inline-block;
    transform: scale(0.1) rotate(0deg);
    animation: starIn 0.5s cubic-bezier(0.4, 0, 0.2, 1.0) forwards;
}

@keyframes starIn {
    0% {
        transform: scale(0.1) rotate(0deg);
    }
    60% {
        transform: scale(1.5) rotate(45deg);
    }
    80% {
        transform: scale(0.8) rotate(-15deg);
    }
    100% {
        transform: scale(1.0) rotate(0deg);
    }
}

.skill-star {
    opacity: 0;
}

.skill-star-glow {
    filter: drop-shadow(0 0 3px #cea905);
    transform: scale(1.0) rotate(0deg);
    animation: glow 1.5s infinite;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 1px #cea905);
    }
    50% {
        filter: drop-shadow(0 0 3px #f3d137);
    }
    100% {
        filter: drop-shadow(0 0 1px #cea905);
    }
}

.collapse-skill-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.collapse-skill-list.show {
    max-height: 500px;
}
.show-more-btn {
    color: #a6c9e2;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 0.5rem auto;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    width: 100%;
    box-shadow: none;
    text-decoration: none !important;
}
.show-more-btn:focus, .show-more-btn:active {
    outline: none;
    box-shadow: none;
}
.show-more-btn .show-more-text {
    color: #a6c9e2;
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: normal;
    font-weight: 400;
}
.show-more-btn .dash {
    color: #a6c9e2;
    font-size: 1.1em;
    opacity: 0.35;
    margin: 0 0.7em;
    vertical-align: middle;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* Timeline styles */
.timeline {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-left: 1.0rem;
}

.timeline .timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline .timeline-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #dfb705;
    border: 2px solid #fff;
}

.timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline .timeline-item h5 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline .timeline-item p {
    margin-bottom: 0.5rem;
}

.experience-hr {
    border-color: #a6c9e2;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
}

.experience-technologies {
    margin-top: 1.0rem;
}

.cv-footer {
    color: #9daaf2;
    font-size: 0.85rem;
    margin-top: 2rem;
    user-select: none;
}