body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
    color: #cbd5e1;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(to right, #5ec6f3, #818cf8);
    -webkit-background-clip: text;
    color: transparent;
}

.navbar {
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.85);
}

.blob {
    position: absolute;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.5;
    animation: blob-bounce 12s infinite ease-in-out;
}

@keyframes blob-bounce {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-40px, 20px) scale(0.9);
    }

    75% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

#name {
    background: linear-gradient(to right, #6f3ec5, #2196f3, #6f3ec5, #2196f3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: two-color-gradient 3s linear infinite;
}

@keyframes two-color-gradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: rgb(108, 117, 125);
    margin-left: 5px;
    height: 1em;
    vertical-align: middle;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.profile-blob {
    width: 400px;
    height: 400px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 10s infinite;
}

.profile-blob:hover {
    animation-play-state: paused;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.scroller {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(-20px);
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #0dcaf0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d6efd;
}

.wide-placeholder {
    background-color: #1e293b;
    position: relative;
    transition: 0.3s ease;
    overflow: visible;
}

.wide-placeholder:before {
    box-shadow:
        0 0 5px #5ec6f3,
        0 0 5px #5ec6f3,
        0 0 5px #5ec6f3;
}

.wide-placeholder::after {
    box-shadow:
        0 0 5px #818cf8,
        0 0 5px #818cf8,
        0 0 5px #818cf8;
}

.wide-placeholder::before,
.wide-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 51%;
    pointer-events: none;
    z-index: -1;
    transition: 0.3s ease;
    border-radius: inherit;
}

.wide-placeholder::before {
    left: 0;
}

.wide-placeholder::after {
    right: 0;
}

.wide-placeholder:hover:before {
    box-shadow:
        0 0 15px #5ec6f3,
        0 0 15px #5ec6f3,
        0 0 15px #5ec6f3;
}

.wide-placeholder:hover::after {
    box-shadow:
        0 0 15px #818cf8,
        0 0 15px #818cf8,
        0 0 15px #818cf8;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px 8px;
    font-weight: 100;
    font-size: 0.8rem;
}

.user-icon {
    width: 200px;
    height: 200px;
}

.tech-card {
    background: #1e293b;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    height: 100%;
    transition: 0.25s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(129, 140, 248, 0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #0ea5e9);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    transition: transform 0.2s;
}

.skill-box:hover {
    transform: scale(1.12);
}

.skill-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.skill-label {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}

.project-box {
    background: #1a1f2b;
    border: 1px solid #2b3545;
    transition: 0.3s;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.tech-badge {
    padding: 4px 10px;
    background: #243447;
    border-radius: 8px;
    font-size: 12px;
    color: #c9d1d9;
}

.filter-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
    color: #333;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4875f4 0%, #8b3bec 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #305ae7 0%, #7728d1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.filter-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.custom-input::placeholder {
    color: #94a3b8;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #1e293b;
    color: #cbd5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-btn:hover {
    background-color: #0ea5e9;
    color: #020617;
}

.back-to-top-btn {
    background: linear-gradient(135deg, #4875f4 5%, #8b3bec 100%);
    border: none;
    font-size: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #305ae7 5%, #7728d1 100%);
}