* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, rgba(16, 16, 16, 1) 0%, rgba(15, 15, 15, 1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container-404 {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.content-404 {
    background: rgba(37, 38, 47, 0.5);
    border: 1px solid rgba(235, 235, 245, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #9772F2 0%, #7B47FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.error-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    background: linear-gradient(135deg, #7B47FF 0%, #9772F2 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(123, 71, 255, 0.3);
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 71, 255, 0.5);
}

/* Responsivo */
@media (max-width: 768px) {
    .content-404 {
        padding: 40px 30px;
    }

    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-description {
        font-size: 14px;
    }
}
