.not-found-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.not-found-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: #facc15;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
}

.not-found-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.not-found-content p {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.error-path {
    font-family: monospace;
    background: #262626;
    padding: 8px 12px;
    border-radius: 8px;
    color: #facc15;
    font-size: 14px;
    display: inline-block;
    margin: 20px 0;
}

.not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.not-found-actions .btn-primary {
    padding: 12px 30px;
    background: #facc15;
    color: #000;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.not-found-actions .btn-primary:hover {
    background: #fde047;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
}

.not-found-actions .btn-secondary {
    padding: 12px 30px;
    background: #171717;
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.not-found-actions .btn-secondary:hover {
    background: rgba(250, 204, 21, 0.15);
    border-color: #facc15;
    color: #facc15;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }

    .not-found-content h1 {
        font-size: 24px;
    }

    .not-found-actions {
        flex-direction: column;
    }

    .not-found-actions button {
        width: 100%;
    }
}
