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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease-out;
}

.cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-width: 100px;
    max-height: 40px;
    opacity: 0.8;
}

.title {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.changing-text {
    transition: opacity 0.5s ease;
    opacity: 1;
}

@media (max-width: 600px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 1.1rem;
    }
}
