body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/background.png');
    background-size: cover;
    backdrop-filter: blur(10px) invert(0.05);   
    color: #fff;
}

.container {
    background: rgba(0, 0, 0, 0.65);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    width: 80%;
    max-width: 900px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
}

.back-button {
    margin-top: 30px;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #FF8C00, #FFD700);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.7);
}