@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a, a *, button, .cursor-pointer {
    cursor: pointer !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #87CEEB; /* Match the sky blue background */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-image {
    width: 110%;
    height: 110%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -5%;
    left: -5%;
    animation: live-background 30s ease-in-out infinite alternate;
    filter: brightness(0.8);
}

@keyframes live-background {
    from {
        transform: scale(1) translate(0, 0);
    }
    to {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(150%);
    box-shadow: 0 0 100px -20px rgba(255, 255, 255, 0.2), 0 0 40px -10px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 150px -20px rgba(255, 255, 255, 0.3), 0 0 60px -10px rgba(59, 130, 246, 0.5);
}

.social-button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-button:hover {
    transform: scale(1.02) translateX(4px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.about-me-tag {
    animation: floating 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3b82f6;
    animation: typing 2.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #3b82f6; }
}

.verified-badge {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

h1 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.text-sky-400 {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

::selection {
    background-color: rgba(59, 130, 246, 0.3);
}
