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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Canvas Layers */
#noise-canvas,
#gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#noise-canvas {
    z-index: 1;
    opacity: 0.08;
}

#gradient-canvas {
    z-index: 2;
    opacity: 0.6;
}

/* Content Layer */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 420px;
    max-width: 80vw;
    height: auto;
    fill: #ffffff;
}

/* Social Links */
.social-links {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    opacity: 1;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        width: 300px;
    }

    .social-links {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 240px;
    }

    .social-links {
        bottom: 1.5rem;
        gap: 0.75rem;
    }

    .social-links a {
        font-size: 0.85rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #noise-canvas,
    #gradient-canvas {
        display: none;
    }
}
