body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #111 0%, #000 80%);
    color: #ccc;
    font-family: "Times New Roman", serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.3;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    from { transform: translate(0,0); }
    to { transform: translate(-200px, -200px); }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    z-index: 1;
    position: relative;
}

h1 {
    font-size: 28px;
    letter-spacing: 4px;
    color: #eee;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.art {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 0 20px rgba(255,255,255,0.1),
        0 0 60px rgba(0,150,255,0.2),
        inset 0 0 30px rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.description {
    max-width: 500px;
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    font-style: italic;
}

.fragment {
    position: absolute;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    animation: fadeFloat 20s infinite linear;
}

@keyframes fadeFloat {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-40px); }
}

.f1 { top: 20%; left: 10%; }
.f2 { top: 70%; left: 80%; animation-delay: 5s; }
.f3 { top: 40%; left: 75%; animation-delay: 10s; }
.f4 { top: 80%; left: 20%; animation-delay: 15s; }