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

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

.container {
    background: linear-gradient(145deg, #28313b, #485461);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 70%;
    height: auto;
    animation: float 5s ease-in-out infinite;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hue-rotate 5s linear infinite;
}

.back-button {
    color: #ff4b2b;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid #ff4b2b;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.back-button:hover {
    background: #ff4b2b;
    color: white;
    transform: translateY(-5px);
}

.prompt-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease;
}

.cyber-content {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(145deg, #232526, #414345);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cyber-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: slideInFromLeft 1s ease-out;
}

.cyber-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
    animation: slideInFromLeft 2s ease-out;
}

footer {
    text-align: center;
    margin-top: 20px;
}

@keyframes hue-rotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}