* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.container {
    text-align: center;
}

/* Main text */
h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 0.5rem;
    text-transform: uppercase;

    /* Gradient metallic effect */
    background: linear-gradient(
        90deg,
        #555 0%,
        #aaa 25%,
        #eee 50%,
        #aaa 75%,
        #555 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle glow */
    text-shadow:
        0 0 10px rgba(255,255,255,0.1),
        0 0 20px rgba(255,255,255,0.05);

    /* Smooth appearance */
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

/* Optional cinematic fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}