body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(45deg, #000000, #434343);
    background-size: 400% 400%;
    animation: galaxy 15s ease infinite;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 5px);
    background-size: 50px 50px;
    animation: stars 3s linear infinite;
}

@keyframes galaxy {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

h1, h2, h3, h4 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    transform-origin: center;
}

button:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

button:active {
    animation: clickEffect 0.3s ease;
}

@keyframes clickEffect {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.legal-notice {
    position: relative;
    z-index: 1;
    color: white;
    margin-top: 20px;
}

.site-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255,255,255,0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}