* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

html {
    scroll-behavior: auto;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.title-widget {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
}

.title-widget h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.2;
}

.title-widget p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.scroll-content {
    position: relative;
    width: 100%;
    height: 1000000px; /* Very large height for endless scrolling */
    z-index: 0;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .title-widget {
        top: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    
    .title-widget h1 {
        font-size: 1.75rem;
    }
    
    .title-widget p {
        font-size: 0.8rem;
    }
}