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

body {
    background-color: #0a0a0a; /* Ultra-dark background */
    color: white;
    font-family: 'Inter', -apple-system, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#waveCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15; /* Keeps waves subtle */
}

.content {
    text-align: center;
    z-index: 1;
}

.logo-text {
    font-size: 4rem;
    letter-spacing: 0.8rem;
    font-weight: 300;
    margin-bottom: 40px; /* Space between text and atom */
}

.atom-container {
    width: 120px; /* Enlarged atom */
    margin: 0 auto;
    opacity: 0.8;
}

.atom-svg {
    width: 100%;
    height: auto;
    animation: rotateAtom 20s linear infinite;
}

@keyframes rotateAtom {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    opacity: 0.5;
}
