.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-code {
    font-size: 6rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--aurora-violet), var(--aurora-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.poem-container, .message-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 2rem auto;
}

.back-home {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: var(--aurora-purple);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
}

.back-home:hover {
    background: var(--aurora-violet);
    transform: translateY(-2px);
}

.error-message {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--aurora-violet), var(--aurora-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-detail {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.error-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(165, 242, 243, 0.5);
}

.error-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--ice-blue), var(--aurora-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.error-text {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
}
