* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

*:focus, *:active, *:target {
    outline: none !important;
    box-shadow: none !important;
}

canvas, a, button {
    outline: none !important;
    border: none !important;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

/* Hide scrollbars */
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #0a0c10;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0c10 0%, #0d1117 50%, #080a0e 100%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow: hidden;
    position: relative;
    touch-action: none;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

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

/* Soft cursor glow */
.cursor-glow {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 200, 224, 0.18) 0%, rgba(168, 200, 224, 0.08) 35%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-glow.visible {
    opacity: 1;
}

main {
    text-align: center;
    animation: fadeIn 2s ease-out;
    position: relative;
    z-index: 1;
}

h1 {
    color: #e4e8ec;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 40px rgba(139, 170, 190, 0.3),
        0 0 80px rgba(109, 154, 196, 0.15);
}

.linkedin-link {
    display: inline-block;
    color: #6b8090;
    transition: color 0.4s ease, transform 0.3s ease;
    padding: 15px;
}

.linkedin-link:hover {
    color: #a8c0d4;
    transform: scale(1.1);
}

.linkedin-link svg {
    width: 28px;
    height: 28px;
    transition: filter 0.3s ease;
}

.linkedin-link:hover svg {
    filter: drop-shadow(0 0 15px rgba(168, 200, 224, 0.5));
}

@media (max-width: 600px) {
    h1 {
        letter-spacing: 0.08em;
        margin-bottom: 1.2rem;
    }

    .linkedin-link {
        padding: 10px;
    }
}

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

/* Subtle vignette */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 100;
}
