/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Main container */
.splash-container {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background canvas */
.background-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradient overlay */
.gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle at center, rgba(102, 102, 102, 0.1) 0%, transparent 70%);
    z-index: 2;
}

/* Logo container */
.logo-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@media (min-width: 640px) {
    .logo-container {
        padding: 2rem;
    }
}

.logo-wrapper {
    width: 100%;
    max-width: 64rem;
    padding: 0 1rem;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Corner accents */
.corner-accent {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border: 2px solid #666;
    opacity: 0.2;
    z-index: 10;
}

.corner-accent.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-accent.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-accent.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-accent.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
} 