.game-error-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #111827;
}

.error-card {
    background: #1f2937;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid #2d3748;
}

.error-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #00c853;
}

.error-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.error-message {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back {
    background: #00c853;
    color: white;
    padding: 0.65rem 1.6rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #00a63c;
    transform: translateY(-1px);
}

.btn-retry {
    background: transparent;
    color: #00c853;
    padding: 0.65rem 1.6rem;
    border: 1px solid #00c853;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-retry:hover {
    background: #00c853;
    color: white;
    transform: translateY(-1px);
}

.grow-in-container-position-relative{
    /** Ocupa el 100% de container padre (padre con position relative) */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 768px) {
    .error-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .btn-back, .btn-retry {
        width: 100%;
        text-align: center;
    }
}
