* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
}

h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                 0 0 60px rgba(255, 255, 255, 0.3),
                 0 0 90px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    font-weight: 700;
    animation: glow 3s ease-in-out infinite alternate;
    position: relative;
}

h1::before {
    content: 'Spielfassade';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
}

@keyframes glow {
    from {
        filter: brightness(1) contrast(1);
        transform: scale(1);
    }
    to {
        filter: brightness(1.1) contrast(1.05);
        transform: scale(1.02);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');