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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: white;
    color: #111827;
}

/* Capsule Sidebar */
.sidebar {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 50;
}

.sidebar-item {
    width: 68px;
    height: 68px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar-item:hover {
    transform: scale(1.18) translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.name:hover { border-color: #3b82f6; color: #3b82f6; }
.home:hover { border-color: #000000; color: #000000; }
.about:hover { border-color: #eab308; color: #eab308; }
.interest-link:hover { border-color: #ef4444; color: #ef4444; }
.connection:hover { border-color: #22c55e; color: #22c55e; }

.name-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
    pointer-events: none;
}

.sidebar-item .icon {
    font-size: 1.6rem;
}

/* Hover style untuk teks besar */
.highlight {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.highlight:hover {
    color: #3b82f6;
    transform: scale(1.12) translateY(-10px);
    text-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    filter: brightness(1.08);
}

.highlight-red:hover {
    color: #ef4444;
    transform: scale(1.12) translateY(-10px);
    text-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    filter: brightness(1.1);
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 3.8rem;
    line-height: 1.05;
    font-weight: 700;
}

/* Shadow Gradient Sections */
.shadow-section {
    position: relative;
    padding: 6rem 2rem;
    background: white;
}

.shadow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.08) 100%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
}

.interest-text {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.05em;
    color: #000000;
}

.video-preview {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.video-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .hero-text { font-size: 2.8rem; }
    .about-heading { font-size: 2.8rem; }
    .sidebar {
        flex-direction: row;
        top: auto;
        bottom: 1.2rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        padding: 0 1rem;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        border: 1px solid #e5e7eb;
        border-radius: 9999px;
        height: 64px;
        gap: 0.8rem;
    }
    .sidebar-item { width: 52px; height: 52px; }
    .name-display { display: none; }
    .interest-text { font-size: clamp(3.5rem, 14vw, 6rem); }
}

.tail-text { color: #666; }