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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    position: relative;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-icon {
    font-size: 8rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 200, 0, 0.8));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.warning-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8),
                 0 0 20px rgba(255, 51, 51, 0.6),
                 0 0 30px rgba(255, 51, 51, 0.4);
    margin: 1rem 0;
    letter-spacing: 0.5rem;
}

.vibestruction {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d96ff, #b56bff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 5s ease infinite;
    margin: 1rem 0 2rem 0;
    letter-spacing: 0.3rem;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.warning-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 200, 0, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.warning-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1rem 0;
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.caution-tape {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        #ffcc00,
        #ffcc00 40px,
        #000 40px,
        #000 80px
    );
    opacity: 0.8;
    pointer-events: none;
}

.caution-tape::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        -45deg,
        #ffcc00,
        #ffcc00 40px,
        #000 40px,
        #000 80px
    );
    opacity: 0.8;
}

@media (max-width: 768px) {
    .warning-title {
        font-size: 2.5rem;
    }
    
    .vibestruction {
        font-size: 2rem;
    }
    
    .warning-icon {
        font-size: 5rem;
    }
    
    .warning-content p {
        font-size: 1rem;
    }
}
