﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #aaa;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 16px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideInLeft 0.3s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .toast.success {
        background-color: #10B981;
    }

    .toast.error {
        background-color: #EF4444;
    }

    .toast.info {
        background-color: #3B82F6;
    }


.modal-overlay {
    background-color: rgba(0,0,0,0.75);
    backdrop-filter: blur(2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    display: none;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
}

    .dropdown-menu.show {
        display: block;
        animation: fadeInUp 0.2s ease-out;
    }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-right {
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


.btn-shiny {
    position: relative;
    overflow: hidden;
}

    .btn-shiny::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
        transform: skewX(-20deg);
        animation: shimmer 3s infinite; 
    }






.cube-santa-hat {
    position: absolute;

    left: 50%;
    transform: translateX(-50%) translateY(-260px) translateZ(0); 
    width: 120px;
    z-index: 100;
    pointer-events: none; 
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
    animation: hatBounce 3s ease-in-out infinite;
}

@keyframes hatBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(-260px) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) translateY(-270px) rotate(-5deg);
    }
    
}


.snow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url('https://cdn.pixabay.com/photo/2017/08/25/15/22/snow-2680696_960_720.png');
    background-size: 300px;
    opacity: 0.8;
    animation: snowScroll 5s linear infinite;
}

@keyframes snowScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 300px;
    }
}


.santa-hat-real-container {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) translateY(-10000px);
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    z-index: 100;
    pointer-events: none;

    animation: hatFloat 3s ease-in-out infinite;
}

.hat-plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

    
    .hat-plane.plane-x {
        transform: rotateY(0deg);
    }

    
    .hat-plane.plane-y {
        transform: rotateY(90deg);
    }

@keyframes hatFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(-240px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-255px);
    }
}

.snow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    
    background-image: radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(3px 3px at 40px 70px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(3px 3px at 50px 160px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(3px 3px at 90px 40px, rgba(255, 255, 255, 0.9), transparent);
    background-size: 200px 200px;
    opacity: 0.8;
    animation: snowScroll 3s linear infinite;
}

@keyframes snowScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 200px;
    }
}


.santa-hat-container {
    position: absolute;
    left: 50%;
    top: 50%;
    
    transform: translate(-50%, -50%) translateY(-250px);
    width: 200px; 
    height: 200px; 
    transform-style: preserve-3d;
    z-index: 100;
    pointer-events: none;
    
    animation: hatBounce 3s ease-in-out infinite;
}

.hat-plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

    
    .hat-plane.plane-x {
        transform: rotateY(0deg);
    }
    
    .hat-plane.plane-y {
        transform: rotateY(90deg);
    }

@keyframes hatBounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(-250px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-265px);
    }
}

.btn-shiny {
    position: relative;
    overflow: hidden;
}

    .btn-shiny::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: 0.5s;
    }

    .btn-shiny:hover::after {
        left: 100%;
    }


.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.ring-container {
    position: relative;
    display: inline-block;
}


.status-ring-work img {
    border: 3px solid #22c55e;
    padding: 2px;
}

.status-badge-work {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
    border: 2px solid white;
    z-index: 10;
}


.status-ring-hiring img {
    border: 3px solid #8b5cf6;
    padding: 2px;
}

.status-badge-hiring {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
    border: 2px solid white;
    z-index: 10;
}


.status-ring-mentor img {
    border: 3px solid #f59e0b;
    padding: 2px;
}

.status-badge-mentor {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
    border: 2px solid white;
    z-index: 10;
}


#universal-hover-card {
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none; 
}

    #universal-hover-card.active {
        opacity: 1;
        transform: translateY(0);
    }




.sidebar {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

    .sidebar::-webkit-scrollbar {
        display: none; 
    }