body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1607083207669-3a3182a26aa2?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    animation: bgShift 20s ease-in-out infinite;
}
@keyframes bgShift {
    0% { background-position: center 0; }
    50% { background-position: center 50px; }
    100% { background-position: center 0; }
}
.container {
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 50px 40px 60px;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.logo {
    width: 240px;
    margin-bottom: 30px;
}
h1 {
    font-size: 2.6em;
    margin: 0;
    letter-spacing: 1px;
    color: #A259FF;
}
.tagline {
    font-size: 1.2em;
    margin: 25px 0 35px;
    color: #ccc;
    min-height: 1.2em;
    white-space: nowrap;
    overflow: hidden;
}
.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
}
.socials img {
    width: 40px;
    height: 40px;
    transition: transform 0.25s;
}
.socials img:hover {
    transform: scale(1.25);
}
@media(max-width:600px) {
    .logo { width: 180px; }
    h1 { font-size: 2em; }
    .tagline { font-size: 1em; }
    .socials img { width: 32px; height: 32px; }
}
