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

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.overlay {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    pointer-events: none;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.linkedin-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #333333;
    border: 1px solid #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    pointer-events: auto;
    z-index: 10;
}

.linkedin-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.linkedin-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .overlay {
        padding: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .linkedin-btn {
        bottom: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .linkedin-btn svg {
        width: 14px;
        height: 14px;
    }
}

.footer {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 300;
    color: #333333;
    letter-spacing: 0.05em;
    pointer-events: auto;
    opacity: 1;
}