:root {
    --bg: #0a0a0d;
    --text: #f1f1f1;
    --muted: #8a8a8a;
}

* {
    box-sizing: border-box;
    cursor: none;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 520px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* 🐕 Logo fix */
.dog-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.dog-logo {
    width: 250px; /* maximale Breite */
    height: auto;
    opacity: 1;
}

/* ⚡ Glitch 404 */
.glitch {
    font-size: 88px;
    font-weight: 800;
    position: relative;
    letter-spacing: -3px;
    animation: glitch 2.5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0.7;
}

.glitch::before {
    color: #ff2e63;
    animation: glitchTop 2.5s infinite;
}

.glitch::after {
    color: #00ffd5;
    animation: glitchBottom 2.5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: none; }
    92% { transform: skew(-5deg); }
    94% { transform: skew(5deg); }
}

@keyframes glitchTop {
    0%, 90%, 100% { transform: none; }
    92% { transform: translate(-3px, -2px); }
}

@keyframes glitchBottom {
    0%, 90%, 100% { transform: none; }
    94% { transform: translate(3px, 2px); }
}

/* Text */
h2 {
    font-size: 22px;
    margin: 10px 0 20px;
}

p {
    color: var(--muted);
    min-height: 3em;
}

/* Neon Button */
.neon-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 18px;
    color: #0ff;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.neon-button span {
    display: inline-block;
    transition: color 0.2s, text-shadow 0.2s;
    color: #0ff;
    text-shadow: 0 0 5px #0ff,
                 0 0 10px #0ff,
                 0 0 20px #0ff,
                 0 0 40px #0ff;
}

/* Buchstabe „ausfallen“ lassen */
.neon-button span.off {
    color: #022; /* sehr dunkel, fast aus */
    text-shadow: none;
}

/* Domain */
.domain {
    margin-top: 40px;
    font-size: 13px;
    color: #555;
    letter-spacing: 1px;
}

/* 🐾 Pfoten */
.paw {
    position: absolute;
    font-size: 18px;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
    animation: fadeOut 1.2s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}
