* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a10;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

#animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content {
    position: relative;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.accent {
    color: #4d9aff;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Link styling */
.title-link, .tagline-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
}

.title-link:hover, .tagline-link:hover {
    transform: scale(1.05);
}

.tagline-link:hover .tagline {
    opacity: 1;
    color: #4d9aff;
}

.footer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-link {
    color: #4d9aff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}