/* Custom Styles */

/* Base Reset for Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge {
    animation: float 4s ease-in-out infinite;
}

/* Timeline Custom Styles */
.timeline-entry::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.1), transparent);
    top: 50%;
    z-index: 0;
}

/* Stroke Text for Timeline Numbers */
.stroke-text {
    -webkit-text-stroke: 1px rgba(168,85,247,0.3);
    color: transparent;
}

/* Profile Cards Hover Effects */
.profile-card {
    background: #111;
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-card:hover {
    border-color: #a855f7;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(168,85,247,0.2);
    transform: translateY(-5px);
}

/* Skill Cards */
.skill-card {
    background: #111;
    border: 1px solid rgba(168,85,247,0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: #a855f7;
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(168,85,247,0.2);
    transform: translateY(-3px);
}

.skill-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
